G
George
How can I use an event of "Page" control other than the Page_Load?
I want to use the event "Unload" to execute some code when the page closes.
How can I declare it? The peculiar thing is when I declare the function in
the back code
protected void Unload(object sender, EventArgs e)
{
//*** Some Code
}
the function is executed during the Page Load process.
How can I control the closing of an aspx Page? Not with Javascript but with
C#
Thanks
George
I want to use the event "Unload" to execute some code when the page closes.
How can I declare it? The peculiar thing is when I declare the function in
the back code
protected void Unload(object sender, EventArgs e)
{
//*** Some Code
}
the function is executed during the Page Load process.
How can I control the closing of an aspx Page? Not with Javascript but with
C#
Thanks
George