如何从ajax UpdatePanel使用Server.Transfer或Response.Redirect?

时间:2010-02-05 11:47:47

标签: ajax updatepanel response server.transfer

如何从ajax UpdatePanel使用Server.Transfer或Response.Redirect?

3 个答案:

答案 0 :(得分:1)

没有苛刻,能够真的没有意义。我认为一些关于AJAX的阅读会清楚说明。

但您可以在浏览器中写下以下内容。

<script type="text/javascript">window.location = "URL"</script>

答案 1 :(得分:0)

没关系,我只是发现了自己 在你的Updatepanel中使用javascript,如下面的代码。

c#c​​ode:


  

String TransferPage =   “window.open( '廊-Page.aspx', '_自');”;
  ScriptManager.RegisterStartupScript(页,   Page.GetType(),“temp”,TransferPage,   假);

即使你可以给出超链接而不是“Gallery-Page.aspx”

谢谢,
Asem Ibohal

答案 2 :(得分:0)

UpdatePanel支持Response.Redirect。它适用于我。你得到什么错误?