@using MvcMusicStore.Models;
@model IEnumerable<Album>
@{
ViewBag.Title = "List2";
string hola = "Test <script>alert('bip')</script>";
}
<h2>@@List2</h2>
<span>@hola</span>
<ul>
@foreach (Album a in Model )
{
<li>@a.Title,@a.Tipo</li>
}
</ul>
我已经读过剃须刀自动对字符串进行html编码,但是在我看来,上面的代码我仍然可以按原样获得字符串,而无需任何编码。
顺便说一句,我在本地主机上运行,以防它以任何方式影响。
提前致谢
更新:
感谢您对 Codo 的特别回答。问题是我只是查看打印在页面上的文本,而不是查看反映编码的页面源。
谢谢