0% found this document useful (0 votes)
44 views

Events: (2IT434-Systems Framework and Application)

An event handler is a subroutine that executes code for a given event in ASP.NET. The Page_Load event is triggered when a page loads and ASP.NET will automatically call the Page_Load subroutine. Within the Page_Load subroutine, code will execute on every page load by default. To have code only execute on the initial page load, you can check the Page.IsPostBack property, which will be false on the initial load and true on subsequent postbacks.

Uploaded by

Milan Patel
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views

Events: (2IT434-Systems Framework and Application)

An event handler is a subroutine that executes code for a given event in ASP.NET. The Page_Load event is triggered when a page loads and ASP.NET will automatically call the Page_Load subroutine. Within the Page_Load subroutine, code will execute on every page load by default. To have code only execute on the initial page load, you can check the Page.IsPostBack property, which will be false on the initial load and true on subsequent postbacks.

Uploaded by

Milan Patel
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

[2IT434-Systems Framework and Application]

ASP.NET - Events

An Event Handler is a subroutine that executes code for a given event.

ASP.NET - Event Handlers

Look at the following code:

<%
lbl1.Text="The date and time is " & now()
%>

<html>
<body>
<form runat="server">
<h3><asp:label id="lbl1" runat="server" /></h3>
</form>
</body>
</html>

When will the code above be executed? The answer is: "You don't know..."

The Page_Load Event

The Page_Load event is one of many events that ASP.NET understands. The Page_Load event is triggered when a page loads,
and ASP.NET will automatically call the subroutine Page_Load, and execute the code inside it:

Example

<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: The Page_Load event contains no object references or event arguments!

The Page.IsPostBack Property

The Page_Load subroutine runs EVERY time the page is loaded. If you want to execute the code in the Page_Load subroutine
only the FIRST time the page is loaded, you can use the Page.IsPostBack property. If the Page.IsPostBack property is false, the
page is loaded for the first time, if it is true, the page is posted back to the server (i.e. from a button click on a form):

Example
<script runat="server">
Sub Page_Load
if Not Page.IsPostBack then
lbl1.Text="The date and time is " & now()
end if

VD Page 1
[2IT434-Systems Framework and Application]

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 example above will write the "The date and time is...." message only the first time the page is loaded. When a user clicks
on the Submit button, the submit subroutine will write "Hello World!" to the second label, but the date and time in the first
label will not change.

VD Page 2

You might also like