我正在检查会话的值,如果没有值,我将其重定向到默认页面。以下适用于Firefox和谷歌浏览器,但不适用于IE。
if (Session["OrgId"] != null)
{
//My logic
}
else
{
Response.Redirect("../Default.aspx?Sid=1", true);
}
我在IE中获得Operation Aborted
。
Internet Explorer无法打开Internet站点
http://localhost:1218/order/Default.aspx?Sid=1
有任何建议。