带冒号的 ASP.NET 服务器标记?
我四处寻找,却找不到任何合理的解释。
我在其中一个项目中发现 <%:
标签。它的工作原理类似于 <%=
标签。
我找不到这个标签的任何描述,我只发现 <%:
和 <%=
是相同的。
那么问题就来了,为什么会有两个不同的标签具有相同的功能呢?我认为应该有一些区别。
您能帮我澄清一下吗?
谢谢
I searched all around, but could not find any reasonable explanation.
I found <%:
tag in one of the projects. It works like the <%=
tag.
I could not find any description on this tag I only found that <%:
and <%=
are the same.
So the question popped out, why could there be two different tags with same functionality? I think there should be some difference.
Could you please clarify it for me.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
<%:
对您正在写出的字符串执行 HTML 编码Scott Hanselman 建议考虑关闭等号 - 就像一扇门(视图的侧面)。他在此视频中谈到了这一点
ASP.NET MVC 2:忍者黑带技巧
<%:
Performs a HTML Encode on the string you are writing outScott Hanselman suggests thinking about the equals sign being closed - like a gate (side on view). He talks about it in this video
ASP.NET MVC 2: Ninja Black Belt Tips
<% %>
为 嵌入代码块<%= %>
用于显示网页内容。
此外,您可以从此处找到有关 ASP.NET 页面语法 的所有详细信息。
希望这有帮助!
<% %>
are Embedded Code Blocks<%= %>
are used toDisplay content from web page.
Moreover you can find all the details about ASP.NET Page Syntax from here.
Hope this helps!!
根据 这篇博文 它是 ASP.NET 4 中引入的新功能。它用于自动对输出进行 HTML 编码。
我建议阅读完整的博客文章,看看它是如何工作的;)
According to this blog post it is a new feature introduced in ASP.NET 4. It is used to automatically HTML Encode the output.
I suggest to read the full blog post, to see how it works ;)