我正在使用它来加载弹出窗口:
$(document).ready(function () {
$(".openDialog").live("click", function (e) {
e.preventDefault();
$("<div></div>")
.addClass("dialog")
.attr("id", $(this).attr("data-dialog-id"))
.appendTo("body")
.dialog({
title: $(this).attr("data-dialog-title"),
close: function () { $(this).remove(); },
width: 400,
modal: true
})
.load(this.href);
});
问题是当我单击将在弹出窗口中打开的任何链接并且发生任何错误时,整个错误页面都会加载到弹出窗口中。我希望将用户重定向到未经授权的页面或任何其他错误页面,而不是将错误页面加载到模式弹出窗口中。
这适用于任何不会在弹出窗口中打开的链接。
仅供参考,我已启用自定义错误模式。
<customErrors mode="On" defaultRedirect="~/Errors/General/">
<error statusCode="404" redirect="~/Errors/Http404/" />
</customErrors>