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


Please Help Members By Posting Answers For Below Questions

List the asp.net validation controls?

519


How can you enable impersonation in the web.config file?

552


what is command line compiler.what are the steps and how it is related to debugging.

1404


Explain about ASP.NET?

626


Define reflection in .net?

550






What is variable and constant in .net programming language?

386


How do I open an ashx file?

534


What are the events in a page life cycle?

526


If you are using two select queries and retrieving data. how do you access second query's result set using data reader?

4735


Explain the difference between authentication and authorization.

589


Can you use c# without .net?

530


What will happen if the server confugration file and the application confugration file have different values for sassion state ASP.NET?

739


Where web.config file is used?

563


What is the difference between ASP.NET Webforms and ASP.NET MVC?

602


What are web beacons used for?

535