driis
driis

Reputation: 164341

Where is the event handlers wired up when using AutoEventWireup?

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).

Upvotes: 1

Views: 226

Answers (1)

John Saunders
John Saunders

Reputation: 161831

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

Upvotes: 1

Related Questions