D
DC
Hi,
when I add a control like
<asp:LinkButton runat="server" id="myLink" />
then I can switch to the design view and click on the OnClick event,
enter a name for the handler, hit "Tab" and get an automatically
created event handler in code behind.
Can I do this without going to design mode (because it bugs me)? Enter
<asp:LinkButton runat="server" id="myLink" OnClick="myLink_OnClick" />
and then click somewhere to get a stubs?
TIA for hints,
Regards
DC
when I add a control like
<asp:LinkButton runat="server" id="myLink" />
then I can switch to the design view and click on the OnClick event,
enter a name for the handler, hit "Tab" and get an automatically
created event handler in code behind.
Can I do this without going to design mode (because it bugs me)? Enter
<asp:LinkButton runat="server" id="myLink" OnClick="myLink_OnClick" />
and then click somewhere to get a stubs?
TIA for hints,
Regards
DC