在ASp.net中重写超过一个pera的URL

时间:2016-07-08 07:29:52

标签: asp.net

1 个答案:

答案 0 :(得分:0)

使用Uri.AbsoluteUri Property将字符串添加到字符串中 然后使用replace函数替换=.aspx?

<强>代码

string url = HttpContext.Current.Request.Url.AbsoluteUri;
url = url.Replace(".aspx?", "").Replace("=", "").Replace("&", "/");
Response.Redirect(url);