Wednesday, 5 March 2014

Page Pre_Render Event in Asp.net C#

If you want to perform some action after the page is completely loaded and Ready to Render then the desired code should be written in this event.

protected void Page_PreRender(object sender, EventArgs e)
{
    // Your Code Goes Here
}

No comments:

Post a Comment