Visual Studio 2010的HttpContext.Current.Response.Redirect问题

时间:2011-03-23 11:56:51

标签: asp.net visual-studio-2008 visual-studio-2010 .net-4.0 asp.net-ajax

我已将Web应用程序从3.5(VS 2008)迁移到4.0 Vs(2010)

现在我遇到了 Response.Redirect

的问题

正如我在.aspx页面中找到了以下解决方案,它运行正常。

旧代码在Vs2010中不起作用

  

的Response.Redirect(Page.ResolveUrl(strURL));

以下是用于重定向页面的代码。

  

ScriptManager.RegisterStartupScript(此,   this.GetType(),“red”,   “window.location.href ='”+ strURL +   “';”,真实);

但现在我需要从类库重定向 所以任何人都可以指导我...我可以重定向..我试过

HttpContext.Current.Response.Redirect(strURL); 但它没有用。

1 个答案:

答案 0 :(得分:0)

传递对类库的响应的引用,并使用它来执行重定向。