vote up 4 vote down star
1

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.

flag

9 Answers

vote up 3 vote down check

You need to use HTML on a web page to get line breaks. For example "<br/>" will give you a line break.

link|flag
vote up 6 vote down

Check out Environment.NewLine. As for web pages, break lines with <br /> or <parata /> tags.

link|flag
You mean tags right? – Gerrie Schenck Feb 5 '09 at 12:43
vote up 3 vote down

If you are using something like this.

Response.Write("Hello \r\n")
Response.Write("World \r\n")

and the output is

Hello\r\nWorld\r\n

Then you are basically looking for something like this

Response.Write("Hello <br/>")
Response.Write("World <br/>")

This will output

Hello 
World

you can also just define "<br />" as constant and reuse it

eg.

Public Const HtmlNewLine as string ="<br />"
Response.Write("Hello " &  HtmlNewLine) 
Response.Write("World " &  HtmlNewLine)
link|flag
If you want to go all out, you could even subclass Environment and add the HtmlNewLine to it... – John Baughman Feb 6 '09 at 6:49
:) yes John. Also we can add as Extension methods if need be. – Sachin Feb 6 '09 at 7:09
vote up 2 vote down

Try Environment.NewLine.

link|flag
this won't do anything for a web environment. You need a <br /> tag – Chris Ballance Feb 5 '09 at 14:10
vote up 2 vote down

Your need to use the html/xhtml break character:

<br />
link|flag
vote up 0 vote down

it's : vbnewline for example Msgbox ("Fst line" & vbnewline & "second line")

link|flag
vote up 0 vote down
VbCr

Try that.

link|flag
VbCr = "\r". vbCrLf = "\r\n" and is much more common – JaredPar Feb 5 '09 at 14:37
vote up 0 vote down

Environment.NewLine is the most ".NET" way of getting the character, it will also emit a carriage return and line feed on Windows and just a carriage return in Unix if this is a concern for you.

However, you can also use the VB6 style vbCrLf or vbCr, giving a carriage return and line feed or just a carriage return respectively.

link|flag
Why the downvote? – Garry Shutler Feb 5 '09 at 12:58
I suspect because while your answer addresses how to get the newline character that isn't actually the answer the questioner needs. What he actually needs is an HTML break. As has been covered by other answers. None of the answers that just talk about NewLine are really answering the question. – andynormancx Feb 5 '09 at 14:19
Although, that said, the question is incredibly unclear. I guess "print a message on a web page" could actually mean he is trying to use alert() or msgbox() on the web page, which would make it a whole different question. – andynormancx Feb 5 '09 at 14:22
Yeah, the question is poor if that is what he wants as he mentions "\r\n" which is C style for vbCrLf, I assumed that was the answer he was looking for. – Garry Shutler Feb 5 '09 at 15:13
vote up 0 vote down

The proper way to do this in VB is to use on of the VB constants for newlines. The main three are

  • vbCrLf = "\r\n"
  • vbCr = "\r"
  • vbLf = "\n"

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.

  • C++ file path string: "c:\\foo\\bar.txt"
  • VB file path string: "c:\foo\bar.txt"
  • C# file path string: C++ way or @"c:\foo\bar.txt"
link|flag
-1 for ... This is a completely valid and correct answer – JaredPar Feb 5 '09 at 19:45
These methods are depricated in .NET and the standard Environment.NewLine should be used. And since the OP was looking at ASP.NET, these constants wouldn't work anyway. HTML <BR/> tags are the correct way to provide the solution sought. – John Baughman Feb 6 '09 at 6:46
I was referring to the VB6 style constants. Just so we are clear. I still wouldn't have voted this down though. – John Baughman Feb 6 '09 at 6:52
@John, actually you are wrong. The vb constants are in no way deprecated. – JaredPar Feb 6 '09 at 13:32

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.