我在哪里可以找到有关代码块的信息?

时间:2009-01-08 14:38:18

标签: asp.net

有没有人知道一个好的网站,总结了你可以用ASP.Net中的代码块(即<%<%=<%#etc)做什么?

感谢。

2 个答案:

答案 0 :(得分:2)

以下是MSDN页面:MSDN Embedded Code Blocks

<%    -  any code

<%=   -  shortcut for Response.Write()    

<%#   -  is for binding

<%--  -  is for comments

答案 1 :(得分:1)

这个问题应该有所帮助:
When should I use # and = in ASP.NET controls?