事件处理程序,对于给定事件执行代码的子例程。
ASP.NET - 事件处理程序
请看下面的代码:
<%
lbl1.Text="The date and time is " & now()
%>
<html>
<body>
<form runat="server">
<h3><asp:label id="lbl1" runat="server" /></h3>
</form>
</body>
</html>
当将上面的代码被执行? 答案是: "You don't know..."
Page_Load事件
Page_Load事件是ASP.NET了解许多事件之一。 Page_Load事件被触发时,页面加载,和ASP.NET会自动调用子程序的Page_Load,并执行它里面的代码:
例
<script runat="server">
Sub Page_Load
lbl1.Text="The date and time is " & now()
End Sub
</script>
<html>
<body>
<form runat="server">
<h3><asp:label id="lbl1" runat="server" /></h3>
</form>
</body>
</html>
显示范例» Note: Page_Load事件不包含对象引用或事件参数!
Page.IsPostBack属性
在Page_Load子程序运行页面加载每次。 如果你想在Page_Load子程序执行代码只加载页面的第一次,你可以使用Page.IsPostBack属性。 如果Page.IsPostBack属性为false,页面加载的第一次,如果这是真的,页面回发到服务器(即从窗体上按钮点击):
例
<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
lbl1.Text="The date and time is " & now()
end if
End Sub
Sub submit(s As Object, e As EventArgs)
lbl2.Text="Hello World!"
End Sub
</script>
<html>
<body>
<form runat="server">
<h3><asp:label id="lbl1" runat="server" /></h3>
<h3><asp:label id="lbl2" runat="server" /></h3>
<asp:button text="Submit" onclick="submit" runat="server" />
</form>
</body>
</html>
显示范例» 上面的例子将写入"The date and time is...."的消息仅在第一次加载页。 当用户点击提交按钮,提交的子程序会写"Hello World!" 到第二个标签,但在第一个标签的日期和时间不会改变。