How do I get the list of overrides for a ASP.NET WebForm in C#

  • Thread starter Thread starter gencode
  • Start date Start date
G

gencode

How do I get the list of overrides for a ASP.NET page in C#

I can get my PageEvent by selecting MyPage System.Web.UI.Page and
selecting the Lightingbolt, that gives me a list of page events like
AbortTransaction, Load, Unload, etc.

But I can not seem to find the overrideables like AddedControl,
OnPrerender, OnLoad, Visible.

The only option I see is to manually add them in, is there another way?

In VB of course it is the dropdown list on the code page.

Thanks, Ed,
 
Thanks Ben,

Yes that gets the definition but still I must manually add them in
based on the definition as far as I can tell...sure would be nice if it
popped it in automatically like VB.NET does, well I did see you can
copy the definition, and paste it in the code.

Thanks, Again, Ed,
 
Back
Top