In controller:
ViewData["results"] = "Line 1" + Environment.Newline + "Line 2";
In view:
<%= ViewData["results"] %>
This will output: Line 1 Line 2
Anyone know why?
|
|
In controller:
In view:
This will output: Line 1 Line 2 Anyone know why? |
||
|
|
|
|
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:
|
||
|
|
|
|
You need to use Code sample:
|
||
|
|
|
|
Found out that this is because the view needs to have i.e.
|
||
|