使用查询字符串获取当前网址

时间:2018-03-26 02:08:24

标签: c# asp.net webforms

如何在代码后面使用C#查找当前页面参数的(文件)名称?例如:

mysite.com/folder1/car.aspx?car_id=1&region=3

我想获得字符串car.aspx?car_id=1&region=3

1 个答案:

答案 0 :(得分:2)

这应该适合你:

Request.Url.AbsolutePath 

你也可以使用它:

Request.Url.PathAndQuery