Wondering if it is possible to edit the Page_Load function after it has been declared.
I have one page class that contains a page_load function that should run on every page like this:
public class iPlannerPage:Page
{
public Label userGreeting;
public void Page_Load()
{
if (Session["User"] != null)
userGreeting.Text = "Welcome,<br/> "+Session["User"];
}
}
I want this to work on every page, but some pages need other things in the Page_Load(). I tried doing it like this:
public class iPlannerSignUp:iPlannerPage
{
public void Page_Load()
{
*code block*
}
}
But this just overwrites the old Page_Load with this new code block. Is there any way to take the old Page_Load function and add stuff to it?