Help, want to add event code to master page that other pages will use
Hi,
with the master page you can add code behind to it but it doesnt seem to filter down to the child pages. For example
protected void Page_LoadComplete()
{
}
with this event you seem to have to add it to every individual page you create. Is there anyway I can add some code that I only have to add once and not to every page?
I want to perform some checks on every page load and dont want to have to add this code to every page.
Bookmarks