0
thiago floriano created
Hi,
Is it possible to break line in a cshtml file using localization? -> @L()
I'm using resource files.
Tried <br> in resource files, break line using shift + enter in the resource file. None worked.
Thanks.
2 Answer(s)
-
0
<br> should work. ASP.NET MVC prevents it as default. Use this:
@Html.Raw(L("..."))
Note that; this is not special to Localization. It's about ASP.NET MVC.
-
0
Once more, worked like a charm!!
Thanks!!