MVC小技巧

1.asp.net mvc 后台代码在前台输出时出现 & 等乱码

用@Html.Raw()方法输出;

@html.Raw()方法还可以用在脚本中直接输出脚本语句。

 

2.后台直接输出HTML

@(new HtmlString(ViewBag.Content))

 

3.

你可能感兴趣的:(MVC小技巧)