如何识别 ASP.NET 中的引用页面?

发布于 2024-08-28 23:38:57 字数 468 浏览 5 评论 0原文

在 VS2003 中,我试图找出请求来自的特定页面。我想确定确切的 aspx 页面名称。

有没有办法只获取页面名称或如何删除页面名称?

目前我正在使用以下指令...

string referencepage = HttpContext.Current.Request.UrlReferrer.ToString();

并且得到以下结果...

http ://localhost/MyPage123.aspx?myval1=3333&myval2=4444;

我想在没有任何查询字符串参数的情况下返回结果,并且能够准确地识别页面 MyPage123.aspx...

如何做我这样做??

In VS2003, I am trying to find out the particular page where the request is coming from. I want to identify the exact aspx page name.

Is there a way to only get the page name or some how strip the page name?

Currently I am using the following instruction...

string referencepage = HttpContext.Current.Request.UrlReferrer.ToString();

and I get the following result...

"http://localhost/MyPage123.aspx?myval1=3333&myval2=4444;

I want to get the result back with out any query string parameters and be able to identify the page MyPage123.aspx accurately...

How do I do that??

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

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

发布评论

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

评论(2

趴在窗边数星星i 2024-09-04 23:38:57

不要在 Uri 上调用 .ToString,而是使用 AbsolutePath 属性:

string referencepage = HttpContext.Current.Request.UrlReferrer.AbsolutePath;

在您的情况下,这应该会为您提供“/MyPage123.aspx”。

编辑:错误地使用了 LocalPath 而不是 AbsolutePath

Instead of calling .ToString on the Uri, use the AbsolutePath property instead:

string referencepage = HttpContext.Current.Request.UrlReferrer.AbsolutePath;

This should get you "/MyPage123.aspx" in your case.

Edit: Had LocalPath instead of AbsolutePath by mistake

朦胧时间 2024-09-04 23:38:57

查看Segments 属性 URI 类(这是 HttpContext.Current.Request.UrlReferrer 返回的内容)。

类似于 HttpContext.Current.Request.UrlReferrer.Segments[1] (更改 1 索引器以获得所需的正确段)。

Look at the Segments property of the URI class (which is what HttpContext.Current.Request.UrlReferrer returns).

Something like HttpContext.Current.Request.UrlReferrer.Segments[1] (changing the 1 indexer to get the correct segment you require).

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