Hi,
Question:
When using Framesets and Server.Transfer in the
Application_Err or event handler is there a mechanism to
get the error page to display in the total view of the
browser not just in the offending frame?
Overview:
I have an application in which I am using framesets. When
an Unhandled exception occurs I try to handle it
gracefully by transfering to an error handling page as
follows:
Global.asax.cs. ..
protected void Application_Err or(Object sender, EventArgs
e)
{
Server.Transfer ("ErrorPage.asp x");
}
The problem is that the ErrorPage.aspx is only displayed
in the offending frame not the complete window of the
browser.
Thanks in advance for your help!!!
Terry
Question:
When using Framesets and Server.Transfer in the
Application_Err or event handler is there a mechanism to
get the error page to display in the total view of the
browser not just in the offending frame?
Overview:
I have an application in which I am using framesets. When
an Unhandled exception occurs I try to handle it
gracefully by transfering to an error handling page as
follows:
Global.asax.cs. ..
protected void Application_Err or(Object sender, EventArgs
e)
{
Server.Transfer ("ErrorPage.asp x");
}
The problem is that the ErrorPage.aspx is only displayed
in the offending frame not the complete window of the
browser.
Thanks in advance for your help!!!
Terry
Comment