I usually redefine methods in the base Page class, which ultimately fire events, rather than subscribe to the events themselves. Intellisense helps there, because as soon as you enter override for a new method, VS presents a list of methods that you can override.
The methods used will be called, for example, [Event]; OnLoad() OnInit() OnPreInit() . Just make sure that if you use this method, which always supports calling the base method, that VS will automatically be inserted for you, if you let Intellisense build this method for you.
source share