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()
%>
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:
Note: The Page_Load event contains no object references or event arguments!
Example
--------------------------------------------------------------------------------
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):
Sunday, June 29, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment