如何在ASP.NET网页中嵌入代码块?

时间:2010-09-28 11:39:07

标签: asp.net

我们使用<%@ %> <%= %> <%# %>等。 在asp.net网页中还可以添加什么asp标签?

2 个答案:

答案 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