-2

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

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

重定向到 >>>

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

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

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

1 回答 1

-2

利用

//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;
于 2012-05-18T23:09:47.687 回答