I am trying to print a message on a web page in vb.net. I am trying to get the messages in new lines. I tried using the "\r\n" and the new line character. But this is getting printed in the page instead of it comming to the next line. Please let me know if there is any alternative.
|
1
|
|||
|
|
|
|
You need to use HTML on a web page to get line breaks. For example "<br/>" will give you a line break. |
||
|
|
|
|
Check out |
||
|
|
|
If you are using something like this.
and the output is
Then you are basically looking for something like this
This will output
you can also just define "<br />" as constant and reuse it eg.
|
||||
|
|
|
Try Environment.NewLine. |
||
|
|
|
Your need to use the html/xhtml break character:
|
||
|
|
|
|
it's : vbnewline for example Msgbox ("Fst line" & vbnewline & "second line") |
||
|
|
|
|
Try that. |
||
|
|
|
However, you can also use the VB6 style |
||||||||
|
|
|
The proper way to do this in VB is to use on of the VB constants for newlines. The main three are
VB by default doesn't allow for any character escape codes in strings which is different than languages like C# and C++ which do. One of the reasons for doing this is ease of use when dealing with file paths.
|
||||||||
|
