你怎么称呼“<;%=%>";以及“<;%#%>";在ASP.NET中
本文关键字:lt gt quot ASP NET 以及 | 更新日期: 2023-09-27 18:28:34
我一直在使用它们,但我不确定你怎么称呼它们。
此外,它们究竟是如何工作的,是否有定义?我很难搜索,因为我不知道它们叫什么。
嵌入式代码块。
有几种类型:
<%= %> is the equivalent of `Response.Write()`
<% %> runs server-side code, like an if-else block
<%: %> is for HTML-encoding the data
<%# %> is for data-binding expressions
<%@ %> is for directives, usually page directives in ASP.NET