如何在 URL 重定向中获取调用 URL

本文关键字:URL 获取 调用 重定向 | 更新日期: 2023-09-27 18:34:42

我在像这个页面这样的 ASP.net 中使用URL重定向

http://xyz:6477/BoxOffice/Events/353454

重定向至>>>

http://xyz:6477/BoxOffice/Events.aspx?EventId=353454

我想在事件页面的页面加载时获取URL

http://xyz:6477/BoxOffice/Events/353454

如何在 URL 重定向中获取调用 URL

使用

//To get referrer
//in C#
Uri MyUrl = Request.UrlReferrer; 
//in vb
Dim MyUrl As Uri = Request.UrlReferrer 
//To get current
//in C#
Uri currrenturl = Request.Url;
//in vb
Dim currentUrl As Uri = Request.Url

如果您使用的是路由,请使用

    //c#
    string ref = Request.UrlReferrer.LocalPath;