在 ASP.NET MVC 中,<%= 和 <%: 有什么区别?

发布于 2024-09-07 04:29:02 字数 132 浏览 3 评论 0 原文

我是 ASP.NET MVC 新手。我见过 <%= ... %><%: ... %>。我在经典 ASP 时代就熟悉第一个,但不熟悉后者。两者有什么区别?

I'm new to ASP.NET MVC. I've seen both <%= ... %>and <%: ... %>. I'm familiar with the first from classic ASP days, but not the latter. What is the difference between the two?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

舟遥客 2024-09-14 04:29:02

<%= %> - 相当于经典 ASP 中的response.write。

<% %> - 表示一个代码块,if、then else、foreach等。

<%: %> - 这是一个新的快捷方式.NET 4,这表示 <%= html.encode(item) %>

解释该快捷方式的视频链接(这是一个短片):

<%= %> - equivalent to response.write in classic ASP.

<% %> - represents a code block, if, then else, for each, etc.

<%: %> - this is a shortcut new to .NET 4, this represents <%= html.encode(item) %>

Link to video explaining the shortcut (it's a short clip):

凤舞天涯 2024-09-14 04:29:02

使用 <%:告诉 ASP.NET 4.0 对显示的值执行 Server.HtmlEncode()。
而使用 <%= 时,则由开发人员决定是否使用 Server.HtmlEncode()。
注意 HtmlEncode() 有助于避免跨脚本攻击。

有关详细信息,请参阅 ScottGu 的帖子 此处

Using <%: tells ASP.NET 4.0 to perform a Server.HtmlEncode() on the value being displayed.
Whereas using <%=, it is up to the developer to use Server.HtmlEncode().
Note HtmlEncode() helps void cross-scripting attacks.

For more info, see ScottGu's post here.

甜心小果奶 2024-09-14 04:29:02

<%:表达式%>是一个 HTML 编码表达式,在 ASP.NET 4 中引入,

相当于 <%= HttpUtility.HtmlEncode(expression) %>

请访问此处了解更多详细信息。

<%: expression %> is an HTML encoded expression and was introduced in ASP.NET 4

It is equivalent to <%= HttpUtility.HtmlEncode(expression) %>

Go here for more detail.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文