当我在父窗口上选择链接时,会打开一个弹出页面。如果在弹出的页面加载处理程序中发生某些异常,则错误应该转到父窗口,而不是弹出页面。如果弹出页面中没有发生异常,它将仅加载弹出内容。
错误消息来自一个Asp页面。
弹出页面的catch块中的代码:
catch(Exception ex)
{
Response.Redirect("");
Response.End();
}
答案 0 :(得分:0)
您无法使用Response.Redirect
来确定页面的加载位置。这是在将请求发送到服务器之前决定的,因此当服务器代码开始运行时,更改页面的位置已经太晚了。
如果要关闭弹出窗口并在父窗口中加载页面,则必须将Javascript代码写入执行该操作的弹出窗口。
示例:
catch (Exception ex) {
Response.Write(
"<html><head><title></title></head><body>" +
"<script>" +
"window.opener.location.href='/ErrorPage.aspx?message=" + Server.UrlEncode(ex.Message) + "';" +
"window.close();" +
"</script>" +
"</body></html>"
);
Response.End();
}
答案 1 :(得分:0)
如果你正在处理catch块中的错误,你可以做什么 - 声明一个javascript变量并在该变量中设置错误文本。
var errorDescription = ""; //Will hold the error description (in .aspx page).
如果发生错误,请在catch
块 -
try
{
//Code with error
}
catch(Exception ex)
{
ScriptManager.RegisterStartupScript(this, this.GetType(), "ErrorVariable", string.Format("errorDescription = '{0}'; CloseWindow();", ex.Message), true);
}
上面的代码将做什么 - 设置错误描述,并在aspx页面上调用CloseWindow()
函数。该函数将包含以下代码行 -
function CloseWindow() {
window.parent.window.SetError(errorDescription);
self.close();
}
此函数将调用父窗口的函数并关闭自身。 SetError()
函数可以以您喜欢的任何方式显示错误。
答案 2 :(得分:0)