Academic Tutorials



English | French | Portugese | German | Italian
Google

Home Source Codes E-Books Downloads Contact Us About Us

ASP.Net
Introduction to ASP.NET
ASP vs ASP.NET
Installing ASP.NET
ASP.NET Web Pages
ASP.NET Server Controls
ASP.NET Event Handlers
ASP.NET Web Forms
ASP.NET Maintaining the ViewState
ASP.NET - The TextBox Control
ASP.NET - The Button Control
ASP.NET - Data Binding
ASP.NET - The ArrayList Object
ASP.NET - The Hashtable Object
ASP.NET - The SortedList Object
ASP.NET - XML Files
ASP.NET - The Repeater Control
ASP.NET - The DataList Control
ASP.NET - Database Connection
ASP.NET - HTML Server Controls
ASP.NET - Web Server Controls
ASP.NET - Validation Server Controls
ASP.NET Summary

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
AJAX Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PHP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
.NET (dotnet)
Microsoft.Net
XML Web Services
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills


ASP.NET Event Handlers
Previous Next


  • To mark something notable happening during the page's execution lifecycle and let you know about it when it happens,ASP.NET page events are used.


  • You can place your own code into the Page_Load event procedure and a prime example of this is Page_Load, this is raised early in the pages lifecycle.


  • An Event Handler is a subroutine that is responsible for executing the code for a given event.


  • ASP.NET - Event Handlers

    Look at the code which is given below:

    <%
    lbl1.Text="The date and time is " & now()
    %>
    <html>
    <body>
    <form runat="server">
    <h3><asp:label id="lbl1" runat="server" /></h3>
    </form>
    </body>
    </html>


    The Page_Load Event

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

    <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 event arguments or object references!

    The Page.IsPostBack Property

    EVERY time the page is loaded,the Page_Load subroutine runs. You can use the Page.IsPostBack property,if you want to execute the code in the Page_Load subroutine only the FIRST time the page is loaded and 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):

    <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 example above will write the "The date and time is...." message only the first time the page is loaded and 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




    Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
    • blinkbits
    • BlinkList
    • blogmarks
    • co.mments
    • connotea
    • del.icio.us
    • De.lirio.us
    • digg
    • Fark
    • feedmelinks
    • Furl
    • LinkaGoGo
    • Ma.gnolia
    • NewsVine
    • Netvouz
    • RawSugar
    • Reddit
    • scuttle
    • Shadows
    • Simpy
    • Smarking
    • Spurl
    • TailRank
    • Wists
    • YahooMyWeb

    Previous Next

    Keywords: ASP.NET Event Handlers, window open event, asp net event, vb net event, java script event, event handlers asp net, javascript handlers, flash event handlers, javascript event, c# event, window event, html event, java event, event document, onload event, event button, dropdownlist event, datagrid event, object event


    HTML Quizes
    HTML Quiz
    XHTML Quiz
    CSS Quiz
    TCP/IP Quiz
    XML Quizes
    XML Quiz
    XSL Quiz
    XSLT Quiz
    DTD Quiz
    Schema Quiz
    XForms Quiz
    XSL-FO Quiz
    XML DOM Quiz
    XLink Quiz
    XQuery Quiz
    XPath Quiz
    XPointer Quiz
    RDF Quiz
    SOAP Quiz
    WSDL Quiz
    RSS Quiz
    WAP Quiz
    Web Services Quiz
    Browser Scripting Quizes
    JavaScript Quiz
    VBScript Quiz
    AJAX Quiz
    DHTML Quiz
    HTML DOM Quiz
    WMLScript Quiz
    E4X Quiz
    Server Scripting Quizes
    ASP Quiz
    PHP Quiz
    PERL Quiz
    SQL Quiz
    ADO Quiz
    .NET (dotnet) Quizes
    Microsoft.Net Quiz
    XML Web Services Quiz
    ASP.Net Quiz
    .Net Mobile Quiz
    C# : C Sharp Quiz
    ADO.NET Quiz
    VB.NET Quiz
    Multimedia Quizes
    SVG Quiz
    Flash Quiz
    Media Quiz
    SMIL Quiz
    Web Building  Quizes
    Web Browsers Quiz
    Web Hosting Quiz
    W3C Quiz
    Web Building Quiz
    Web Quality Quiz
    Web Semantic Quiz
    Web Careers Quiz
    Java Quizes
    Java Quiz
    JSP Quiz
    Servlets Quiz
    Struts Quiz
    EJB Quiz
    JMS Quiz
    JMX Quiz
    Programming Langauges Quizes
    C Quiz
    C++ Quiz
    Visual Basic Quiz
    Data Structures Using C Quiz
    Soft Skills Quizes
    Communication Skills Quiz
    Time Management Quiz
    Project Management Quiz
    Team Work Quiz
    Leadership Skills Quiz
    Corporate Communication Quiz
    Negotiation Skills Quiz

    Privacy Policy
    Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.