Hi..
I am working in ASP.NET and use session management technique. Define session management technique. What is AutoEventWireup and why are we use in ASP.NET application?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jan 20, 2012, 4:27 AM
AutoEventWireup attribute is used to set whether the events needs to be automatically generated or not.
In the case where AutoEventWireup attribute is set to false (by default), event handlers are automatically required for Page_Load or Page_Init. However, when we set the value of the AutoEventWireup attribute to true, the ASP.NET runtime does not require events to specify event handlers like Page_Load or Page_Init.
example :
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="test1.aspx.vb" Inherits="corner_test" %>
hope this help.
Satyapriya NayakPosted Jan 20, 2012, 12:57 AM
Please refer the below links
http://www.codeproject.com/KB/aspnet/AutoEventWireup.aspx
http://www.c-sharpcorner.com/uploadfile/puranindia/what-is-the-autoeventwireup-attribute-in-Asp-Net/
Thanks
Dhaval PatelPosted Jan 20, 2012, 12:28 AM
please refer below link
http://www.codeproject.com/KB/aspnet/AutoEventWireup.aspx
Thanks
Dhaval patel
This post help you than Mark As Accepted Answer