我想重写以下网址
像这样
http://localhost:35716/check/Result/City30/Area3135/School1/Class1/Stream4/RollNo1/Section1/Exam1
答案 0 :(得分:0)
使用Uri.AbsoluteUri Property
将字符串添加到字符串中
然后使用replace
函数替换=
和.aspx?
。
<强>代码强>
string url = HttpContext.Current.Request.Url.AbsoluteUri;
url = url.Replace(".aspx?", "").Replace("=", "").Replace("&", "/");
Response.Redirect(url);