I'm working with a BasePageClass that derives from System.Web.UI.Page.
What I'd like to do is somehow set a break point for every single time a method or property on this page is accessed.
The only way I know how to do this is set up a breakpoint on every property and method on the page. This just doesn't seem practical.
Does anybody know if there is a way to just say "whenever code on this page is executed, break on it"?