This question already has answers here:
Response.Redirect to new window
(20个答案)
3年前关闭。
我们正在使用ASP.NET Webforms(不是MVC)。
我的问题是这样的:
是否可以使用回发然后使用各种Response.Redirect打开新的浏览器窗口?
(20个答案)
3年前关闭。
我们正在使用ASP.NET Webforms(不是MVC)。
我的问题是这样的:
是否可以使用回发然后使用各种Response.Redirect打开新的浏览器窗口?
最佳答案
我还没有遇到Response.Redirect可以导航打开新窗口的实例。
这是一种不使用Response.Redirect的方法,您可以尝试以下方法:
ScriptManager.RegisterStartupScript(this, typeof(string), "New_Window", "window.open( 'http://www.website.com', null, 'height=800,width=1280,status=yes,toolbar=yes,menubar=yes,location=no' );", true);