AutoEventWireup

  • Thread starter Thread starter Daniel Groh
  • Start date Start date
D

Daniel Groh

Hi, I just would like to know wich situation should i use it with true ? I
don't have idea what is this...

--

Atenciosamente,

Daniel Groh
CTF Technologies do Brasil Ltda.
Analista Programador
Fone: 11 3837-4203
E-mail: (e-mail address removed)
 
AutoEventWireup is the setting that asks ASP.NET to call the various Page_*
events automatically if they are present. The main events are Page_Init,
Page_Load, Page_PreRender and Page_Unload. If you are using VS.NET 2003 then
it tends to disable this feature as it wires up the events explicitly in
codebehind either via the += syntax for C# or Handles Page.Load syntax for
VB.NET.

-Brock
DevelopMentor
http://staff.develop.com/ballen
 
if using visual studio set autoeventwireup = false
if not using visual studio just omit autoeventwireup
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

RegExp for Data 1
EventLog does not write 2
SqlParameter ??? 5
inherited classes 4
Creating my events. 2
Context.Handler ? 1
Unable to find script library 1
Convert.FromBase64String() and ViewState 4

Back
Top