I have a pop up, that opens when i select a link in parent form. If some exception occurs in page load catch of pop up window, then the error should go to parent page, not the pop up page. if exception is not occured in the pop up window, it will load pop up only with the contents. Error message is coming from one asp page., please help...
the code in the catch block of popup page as follows..
catch(Exception ex)
{
Response.Redirect("");
Response.End();
}