1

I am trying to track down a bug in a web application, that seems to relate to AutoEventWireup being used. When and how is the events wired up when using AutoEventWireup ?

I know that it happens runtime, but exactly in which framework class/method ? (I am hoping that I will be able to step through the framework code).

driis
  • 161,458
  • 45
  • 265
  • 341

1 Answers1

1

At runtime, your .aspx page is parsed, and the result is turned into a class. The wireup is done in this generated class.

John Saunders
  • 160,644
  • 26
  • 247
  • 397