vote up -1 vote down star

In controller:

ViewData["results"] = "Line 1" + Environment.Newline + "Line 2";

In view:

<%= ViewData["results"] %>

This will output: Line 1 Line 2

Anyone know why?

flag

3 Answers

vote up 4 vote down

Because Environment.Newline is not meant for HTML. It will give you something like "\n" or "\r\n" which will work in multiline text areas. But it has nothing to do with HTML new line tag.

You may try this:

ViewData["results"] = "Line 1" + "<br/>" + "Line 2";
link|flag
vote up 1 vote down

You need to use <br />. Environment.NewLine is typically \r\n (on Windows) which is ignored by the browser.

Code sample:

ViewData["results"] = "Line 1" + "<br /> + "Line 2";
link|flag
vote up 0 vote down

Found out that this is because the view needs to have <pre></pre> tags around the output of the ViewData :)

i.e.

<pre>
<%= ViewData["results"] %>
</pre>
link|flag
Yeap- that's an equivalent way of doing it as opposed to the <br /> approach that myself and New in town have suggested. – RichardOD Aug 21 at 11:37

Your Answer

Get an OpenID
or

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