带冒号的 ASP.NET 服务器标记?

发布于 2024-12-09 02:42:25 字数 256 浏览 0 评论 0原文

我四处寻找,却找不到任何合理的解释。

我在其中一个项目中发现 <%: 标签。它的工作原理类似于 <%= 标签。

我找不到这个标签的任何描述,我只发现 <%:<%= 是相同的。

那么问题就来了,为什么会有两个不同的标签具有相同的功能呢?我认为应该有一些区别。

您能帮我澄清一下吗?

谢谢

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 技术交流群。

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

发布评论

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

评论(3

七分※倦醒 2024-12-16 02:42:25

<%: 对您正在写出的字符串执行 HTML 编码

Scott Hanselman 建议考虑关闭等号 - 就像一扇门(视图的侧面)。他在此视频中谈到了这一点

ASP.NET MVC 2:忍者黑带技巧

<%: Performs a HTML Encode on the string you are writing out

Scott 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

神妖 2024-12-16 02:42:25

<% %>嵌入代码块

and

<%= %> 用于
显示网页内容。

此外,您可以从此处找到有关 ASP.NET 页面语法 的所有详细信息。

希望这有帮助!

<% %> are Embedded Code Blocks

and

<%= %> are used to
Display content from web page.

Moreover you can find all the details about ASP.NET Page Syntax from here.

Hope this helps!!

烟柳画桥 2024-12-16 02:42:25

根据 这篇博文 它是 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 ;)

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