I have a question about carriage returns.
txtOutput.text = "1" & vbcrlf & "2" & vbcrlf & "3"
When i use the above code in a vb.net web application,
the output is displayed in 1 line: 123 instead of
the expected 3 lines:
1
2
3
I tried to use "<br/>" as it works with c# web applications but it does not work here....not sure if i should post this in the asp.net forum.
Can anyone tell me what i should do to have the output diplayed over more than 1 line.
Thanks
txtOutput.text = "1" & vbcrlf & "2" & vbcrlf & "3"
When i use the above code in a vb.net web application,
the output is displayed in 1 line: 123 instead of
the expected 3 lines:
1
2
3
I tried to use "<br/>" as it works with c# web applications but it does not work here....not sure if i should post this in the asp.net forum.
Can anyone tell me what i should do to have the output diplayed over more than 1 line.
Thanks