What Are The Difference Between AutoEventWireup="true" and
AutoEventWireup="False"
Answer Posted / anil jadhav
here is the proper valid answer
AutoEventWireup attribute
AutoEventWireup is a Boolean attribute that indicates
whether events of a Web Forms page are autowired.The default
value for AutoEventWireup is TRUE.
In Visual Basic .NET or in Visual Basic 2005, the designer
performs this binding using the Handles keyword in the
declaration of the event-handler method.
Private Sub Page_Load(ByVal sender As System.Object, ByVal e
As System.EventArgs) Handles MyBase.Load
The ASP.NET page framework supports an alternative mechanism
that uses the AutoEventWireup attribute of a Web Forms page
to automatically associate page events and event-handler
methods. If the AutoEventWireup attribute of the @ Page
directive is set to TRUE (or if it is not specified because
its default value is TRUE), the ASP.NET page framework
automatically calls page event-handler methods.
For example, the Page_Init and Page_Load event-handler
methods are explicitly called by the ASP.NET page framework,
without using the Handles keyword or an explicit event delegate.
Conclusion
When you explicitly set AutoEventWireup to TRUE, Visual
Studio .NET or Visual Studio 2005, by default, generates
code to bind events to their event-handler methods. At the
same time, the ASP.NET page framework automatically calls
the event-handler methods based on their predefined names.
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Is asp.net and .net same?
Is asp.net a language?
Explain what is clr?
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
Describe the difference between inline and code behind - which is best in?
What is a response cookie?
How many types of cache are there?
Mention the execution process for managed code?
What is the difference between c# and .net?
Define xmlvalidatingreader class.
How does exception management works in ASP.NET?
What is the difference between executescalar and executenonquery?
List of words of preprocessor in .net?
Can master pages be nested?
What is clr? Difference between clr & cts?