automatically generate event handler code?

  • Thread starter Thread starter gouqizi.lvcha
  • Start date Start date
G

gouqizi.lvcha

Does VS2005 has the ability to generate event handler code in the code
behind? For example, I cannot find the UI to help me to create event
like Page_Init().

Tom
 
Hello tom
Does VS2005 has the ability to generate event handler code in the code
behind? For example, I cannot find the UI to help me to create event
like Page_Init().
write: "myObj.myEvent += " and press two times on <TAB>,

then, your eventhandler beiing created.
 
Peter:
write: "myObj.myEvent += " and press two times on <TAB>,

then, your eventhandler beiing created.

Doesn't that also have to be in (or no later than) a certain place relative
to the page event sequence / lifecycle? Or in the page class constructor?

I just thought it's worth asking.
 
Back
Top