当javascript location.href =“home.aspx”时,在IE中禁止HTTP 403

时间:2012-09-24 21:00:18

标签: javascript asp.net internet-explorer

我有一个奇怪的事情。 我的应用程序中有一个取消按钮,它有onclick javascript事件,仅执行1件事:location.href =“home.aspx”。

在Firefox中运行良好。

无法在IE中使用。

IE导航到根目录并显示“HTTP 403 Forbidden”

enter image description here

知道发生了什么事吗?

1 个答案:

答案 0 :(得分:0)

location.href = "home.aspx"更改为window.location.href = "/home.aspx",以确保将其重定向到您的网络服务器的根目录。

如果失败,请尝试:

window.location = "http://www.yourdomainhere.com/home.aspx"

如果绝对链接没问题。