MRMAN
07-04-2006, 01:13 PM
Hello,
I have three form "Basefrm", "login" and "logout"
Login and Logout start out with this public class Basefrm : System.Web.UI.Page
And in the InitializeComponent function on Basefrm i hae this
this.PreRender += new System.EventHandler(this.Basefrm_PreRender);
This is used to print the header to the html page on each page. it saves me from having to have the html header on every page.
This section works fine.
My question is does "PostRender" exist and if not is there any way i can get a footer to load onto the page at the bottom.
Cheers
MRMAN
I have three form "Basefrm", "login" and "logout"
Login and Logout start out with this public class Basefrm : System.Web.UI.Page
And in the InitializeComponent function on Basefrm i hae this
this.PreRender += new System.EventHandler(this.Basefrm_PreRender);
This is used to print the header to the html page on each page. it saves me from having to have the html header on every page.
This section works fine.
My question is does "PostRender" exist and if not is there any way i can get a footer to load onto the page at the bottom.
Cheers
MRMAN