response.write
-
Dear all, I want to print blank space between two string like following using For Each arrStr As String In strSplitArr If (arrStr <>"") Then Response.Write(arrStr) 'here i want print with space like following Response.Write(arrStr+" ") End If Next With response.write how to print blank space.How to use a tab space in response.write? If any bode help is apreaciable.
kissy
-
Dear all, I want to print blank space between two string like following using For Each arrStr As String In strSplitArr If (arrStr <>"") Then Response.Write(arrStr) 'here i want print with space like following Response.Write(arrStr+" ") End If Next With response.write how to print blank space.How to use a tab space in response.write? If any bode help is apreaciable.
kissy
Try Response.Write(" "); for multiple space repeat the string " " inside Response.Write().
Thanks, Arindam D Tewary
-
Try Response.Write(" "); for multiple space repeat the string " " inside Response.Write().
Thanks, Arindam D Tewary
-
Glad to help you :)
Thanks, Arindam D Tewary