Why Events in Express Edition Running Twice?!

  • Thread starter Thread starter glenn.nicol
  • Start date Start date
G

glenn.nicol

I have extensive experience in ASP.NET Visual Studio world. I am
working on the Visual Web Developer 2005 Express Edition for a
personal project and have found that controls are being called twice
consistently. Why is this? It is not a postback issue. What do I
need to do to make it stop?

Thanks
 
change the autoeventwireup=false to avoid this problem in the aspx file
because if is set to true and your objects have the OnEvent="method" or sub
method() handles objetc.event, then it will be called twice.
 
change the autoeventwireup=false to avoid this problem in the aspx file
because if is set to true and your objects have the OnEvent="method" orsub
method() handles objetc.event, then it will be calledtwice.

Thanks Sergio! I appreciate the help!!!
 
Back
Top