在视觉 webgui 中导航回来

发布于 2024-12-07 07:24:39 字数 386 浏览 0 评论 0原文

我是 ASP.NET 世界的新手。我正在开发一个使用 asp.net 的应用程序,并在一个 aspx 页面中使用一个用 Visual WebGUI 开发的窗口窗体。
我有这个问题:在我的表单中,我有一个按钮,它必须引发一个事件,相当于浏览器的后退按钮。
我试图搜索有关此的信息,但不幸的是我找不到任何内容。
我认为我必须对 HttpContext 做一些事情。我尝试使用重定向功能,但我的“上一页”始终在新的浏览器窗口中打开。
有人可以告诉我如何做这件事吗?

谢谢 Marco

编辑已解决

button.RegisterClientAction("history.go( -1 )", "");

I'm a newbie of ASP.NET world. I'm developing an app with asp.net and insiede of an aspx page i'm using a window form developed with visual webgui.
I've this problem: inside my form, i have a button wich has to rise an event equals to the page back button of the browser.
I tried to search informations about this, but i can't find anything unfortunately.
I think that i've to do something with the HttpContext. I tried with the Redirect function but my "previous page" is open always in a new browser window.
Can someone tell me a way on how to do this thing please?

Thank's
Marco

EDIT SOLVED

button.RegisterClientAction("history.go( -1 )", "");

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

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

发布评论

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

评论(1

一口甜 2024-12-14 07:24:39

你不能这样做吗:

Response.Redirect(Request.UrlReferrer.ToString());

Cant you do this:

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