ASP.Net Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 2839 Page Views: 

What is the use of AutoEventWireup attribute in Page directive?



Posted By: avibtech Date: 25 September 2009 05:06:42 AM
 Answer:

If the value of AutoEventWireup attribute is set to false, then you need to hook up events to events handlers manually. If it is set to true, then the ASP.NET page framework can automatically raise events.


Posted By: Rajesh


Date: 25 September 2009 05:15:32 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 2iqYw9
Related Questions
ASP.Net : We have a requirement to use same header and footer for number of pages. How we can implement in ASP.Net with minimum code and effort?

We have a requirement to use same header and footer for number of pages. How we can implement in ASP....

We can use Master Pages which defines the layout (look and feel) and standard behavior for all of th....
Category: ASP.Net Date: 10/28/2009 5:10:00 AM
ASP.Net : Which validation control can we use to make sure the values in two different controls matched?
ASP.Net : Can you tell me the two properties common in every validation controls?

Can you tell me the two properties common in every validation controls?

ControlToValidate property and Text property
Category: ASP.Net Date: 10/28/2009 4:44:15 AM
ASP.Net : What is the difference between trace and debug in ASP.NET?

What is the difference between trace and debug in ASP.NET?

Debug and trace enables you to monitor the application for errors and exception without VS.NET IDE. ....
Category: ASP.Net Date: 10/27/2009 4:56:34 AM
ASP.Net : How can we force all the validation controls to run?

How can we force all the validation controls to run?

Use following server-side C# code: Page.Validate();
Category: ASP.Net Date: 10/27/2009 4:49:04 AM