Hi,
in my application
I want to display a popup message like this
if(condition)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "key2", "<script> alert('Your Session is expired'); </script>");
Response.Redirect("../Default.aspx",true);
}
the problem is response.redirect is only working.
if i comment response.redirect, popup will show.
i want to display popup before going to another page.
how it is possible.
Regards
Baiju