使用window.location.href时遇到问题。它在IE9和IE10中运行良好。但是当我在IE8中测试它时,它会将我重定向到另一个页面。它假设下载一个文件。请帮帮我这个。感谢。
这是我的代码:
ScriptManager.RegisterStartupScript(this, this.GetType(), "key:" + DateTime.Now.ToString(), "window.location.replace('Document.aspx?table=TV_IMAGES');", true);
我也尝试过使用window.location,document.location,使其成为一个函数并使用会话超时。但这些都不起作用。
答案 0 :(得分:0)
您可以使用window.location = 'http://demo.org/#anchor';
改变你的要求。希望这会帮助你
答案 1 :(得分:0)
尝试
Window.location.href= 'Document.aspx?table=TV_IMAGES'
而不是替换功能