asp.net web窗体页面是一个宣告式的文本文件,扩展名是.aspx。除了静态的内容之外,你还可以使用八种不同的语法标记元素。这一部分回顾这些语法元素并提供了一些使用方法示例。
呈现代码的语法:<% %>和<%= %>
代码呈现块用<% ... %>元素表示,它允许你控制呈现的内容,在web窗体页面执行的显示阶段执行。下面的例子演示了如何使用它们循环显示html的内容。
<%@ page language="vb" %>
<html>
<body>
<% dim i as integer
for i = 0 to 7 %>
<font size="<%=i%>"> hello world! </font> <br>
<% next %>
</body>
</html>
<% ... %>包含的代码只是执行,而包含等号(<%= ... %>)的表达式会在显示内容的时候计算结果。因此,<%="hello world" %>与c#代码<% response.write("hello world"); %>显示的结果相同。
请注意,由于语言需要使用标记来终止或分离语句(例如c#中的分号;),正确地放置这些标记就很重要了。
c# 代码
<% response.write("hello world"); %> 需要用分号来终止语句。
<%="hello world"; %> 错误:导致"response.write("hello world";);"。
<%="hello world" %> 不需要分号。
声明代码的语法:<script runat="server">
代码声明块定义了会被编译到page类中的成员变量和方法。这些块可用于建立页面和导航逻辑。下面的例子演示了如何在<script runat="server">块中定义subtract方法,接着在页面中调用它。
<html>
<script language="vb" runat=server>
function subtract(num1 as integer, num2 as integer) as integer
return num1-num2
end function
</script>
<body>
<%
dim number as integer = 100
do while number > 0
response.write("value: " & number & "<br>")
number = subtract(number, 1)
loop
%>
</body>
</html>
请注意:与asp不同——在asp中函数必须在<% %>块中定义——所有的函数和全局变量必须使用<script runat=server>标记定义。<% %>块中的函数声明会提示语法编译错误信息。
服务器控件语法
定制的asp.net服务器控件允许页面开发者动态地生成html用户界面并响应客户端请求。它们是在文件中用宣告式的、基于标记的语法表示的。这些标记不同于其它的一些标记,它们包含一个"runat=server"属性。下面的例子演示了如何在asp.net页面中使用<asp:label runat="server">服务器控件。这个控件与system.web.ui.webcontrols名字空间中的label类对应。
通过添加一个id为“message”的标记,可以在运行时建立一个label实例:
<asp:label id="message" font-size=24 runat="server"/>
我们可以使用这个名字来访问该控件。下面的代码设置了该控件的text属性。
message.text = "welcome to asp.net"
<html>
<script language="vb" runat=server>
sub page_load(sender as object, e as eventargs)
message.text = "welcome to asp.net"
end sub
</script>
<body>
<asp:label id="message" font-size=24 runat=server/>
</body>
</html>
html服务器控件语法
html服务器控件允许开发者编程操作页面中的html元素。html服务器控件标签与客户端html元素是有区别的,它带有"runat=server"属性。下面的例子演示了如何在asp.net页面中使用html<span runat=server>服务器控件。
<html>
<script language="vb" runat=server>
sub page_load(sender as object, e as eventargs)
message.innerhtml = "welcome to asp.net"
end sub
</script>
<body>
<span id="message" runat=server/>
</body>
</html>
数据绑定语法:<%# %>
asp.net内建的支持数据绑定的能力允许页面开发者分层次地把控件属性绑定到数据容器值。<%# %>代码块中的代码只在自己的父控件容器的databind方法被调用的时候才执行。下面的例子演示了如何在<asp:datalist runat=server>控件中使用数据绑定语法。
在这个数据列表中,每个项都指定了模板。项模板的内容是使用数据绑定表达式指定的,container.dataitem指向mylist数据列表使用的数据源。
<asp:datalist id="mylist" runat=server>
<itemtemplate>
here is a value: <%# container.dataitem %>
</itemtemplate>
</asp:datalist>
在这种情况下,mylist控件的数据源是编程设定的,接着调用了databind()方法。
调用某个控件的databind方法将引发一个递规树(从该控件开始的到树中的下层控件);该层次中的每个服务器控件的databinding事件都会被引发,控件中的数据绑定表达式相应地计算出值。因此,如果页面的databind方法被调用,那么页面中的每个数据绑定表达式都会被调用。
<html>
<script language="vb" runat=server>
sub page_load(sender as object, e as eventargs)
dim items as new arraylist
items.add("one")
items.add("two")
items.add("three")
mylist.datasource = items
mylist.databind()
end sub
</script>
<body>
<asp:datalist id="mylist" runat=server>
<itemtemplate>
here is a value: <%# container.dataitem %>
</itemtemplate>
</asp:datalist>
</body>
</html>
asp.net 2.0还包含了一种新的简化的数据绑定语法,它允许控件自动地数据绑定到数据源控件,而无需在页面代码中调用databind()。在“执行数据访问”章节中会讨论这种语法。
对象标记语法:<object runat="server" />
对象标记允许页面开发者使用宣告式的、基于标记的语法来声明和建立变量实例。下面的例子演示了如何使用对象标记来建立arraylist类的实例。
在运行的时候该对象会被自动地建立,并可以通过id“items”访问它。
<html>
<script language="vb" runat=server>
sub page_load(byval sender as object, byval e as eventargs)
arrayitems.add("one")
arrayitems.add("two")
arrayitems.add("three")
mylist.datasource = arrayitems
mylist.databind()
end sub
</script>
<body>
<object id="arrayitems" class="system.collections.arraylist" runat=server/>
<asp:datalist id="mylist" runat=server>
<itemtemplate>
here is a value: <%# container.dataitem %>
</itemtemplate>
</asp:datalist>
</body>
</html>
服务器端注释语法:<%-- comment --%>
服务器端注释让页面开发者能够阻止服务器代码(包括服务器控件)和静态内容的执行和呈现。下面的例子演示了如何阻止内容的执行和发送给客户端。请注意,<%--和--%>之间的所有信息都会被过滤掉,并且只有在原始的服务器文件中才可以看见,即使它包含了其它的asp.net指令。
<html>
<body>
the below content has been hidden from browser clients using a server-side comment
(view the .aspx source to see what we mean :-)
<%--
<asp:calendar id="mycal" runat=server/>
<% for i = 0 to 44 %>
hello world <br>
<% next %>
--%>
</body>
</html>
服务器端文件包含语法:<-- #include file="locaton.inc" -->
服务器端文件包含(#include)允许开发者在asp.net页面的任何位置插入特定文件的内容。下面的例子演示了如何在一个页面中插入自定义的标题和脚注。
<html>
<body>
<!-- #include file="header.inc" -->
<br />
<h3> main page content </h3>
<br />
<!-- #include file="footer.inc" -->
</body>
</html>
表达式语法:<%$ ... %>2.0中的新特性
asp.net 2.0增加了一个新的用于在页面分析之前进行值替代的宣告式表达式语法。当我们需要用web.config文件中的连接字符串值或应用程序设置替换服务器控件属性值的时候,它就非常有用。在本地化(locaization)的时候,它还可以用于替换资源文件中的值。
<asp:sqldatasource id="sqldatasource1" connectionstring='<%$ connectionstrings:pubs %>' runat="server" selectcommand="sp_getauthors" />
<asp:label id="label1" text='<%$ resources: exchrate, convertlabel %>' runat="server"/>