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

发布于 2024-08-20 13:13:53 字数 67 浏览 4 评论 0原文

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

How to use Server.Transfer or Response.Redirect from ajax UpdatePanel?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦魇绽荼蘼 2024-08-27 13:13:53

如果不严厉的话,能够做到这一点确实没有意义。我认为阅读一些有关 AJAX 的内容就会清楚地说明这一点。

但您可以向浏览器写入以下内容。

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

Without being harsh, it really doesn't make sense to be able to. I think some reading about AJAX would make it clear.

But you could write following to the browser.

<script type="text/javascript">window.location = "URL"</script>
半窗疏影 2024-08-27 13:13:53

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

C#代码:

字符串传输页 =
"window.open('Gallery-Page.aspx','_self');";
ScriptManager.RegisterStartupScript(页面,
Page.GetType(), "临时", TransferPage,
假);

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

谢谢,
亚森·伊博哈尔

Never mind, i just found out myself
use javascript inside ur Updatepanel like the code below.

c# code:

String TransferPage =
"window.open('Gallery-Page.aspx','_self');";
ScriptManager.RegisterStartupScript(Page,
Page.GetType(), "temp", TransferPage,
false);

Even u can give hyperlink instead of "Gallery-Page.aspx"

Thanks,
Asem Ibohal

我一直都在从未离去 2024-08-27 13:13:53

UpdatePanel 支持 Response.Redirect。对我来说效果很好。你得到什么错误?

UpdatePanel supports Response.Redirect. It works OK for me. What error do you get?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文