无法重定向到另一个页面

时间:2016-01-20 03:41:20

标签: javascript html asp.net-mvc

我正在开发一个视觉工作室MVC项目。

在当前视图中,我在函数中有代码:

window.open("../Report/ReportPage.aspx");  //open a web page on a new tab and the tab is on top
var url = '@Url.Action("IndexMain", "MainController", new { id = 1 })';  //redirect to the main page
window.location.href = url;

问题是运行函数时不显示主页面。在当前视图中,有一个Back buttton会重定向到主页面,此时我将光标移动到按钮上,光标形状仍然是指针而不是手。点击按钮也没有任何回应。

谢谢。

1 个答案:

答案 0 :(得分:0)

两个文件中的js函数。

在重定向之前,我调用了第三方javascript函数。那个打开一个对话框。我相信第三方会导致问题。删除第三方后,重定向工作正常。

感谢您帮助我。