我们使用<%@ %>
<%= %>
<%# %>
等。
在asp.net网页中还可以添加什么asp标签?
答案 0 :(得分:15)
<%%>
简写:
<script runat="server">
</script>
<%
和%>
内的任何内容都是服务器端代码。
其他变体也是快捷方式:
<%@%>
是一个页面直接<%=%>
是Response.Write
<%:%>
是Response.Write
的缩写,添加了html编码(在.NET 4.0中引入)<%#%>
是一个绑定表达式This page是对所有这些的好参考。
答案 1 :(得分:0)
<%@ %> - page directives, Register control
<%= %> - for the server code
<%# %> - for the eval kind of function its also for the server code