MVC - 删除QueryString

时间:2013-11-04 15:24:41

标签: c# asp.net asp.net-mvc

我正在开发一个项目,我想做的是清除我的网址栏中的查询字符串。

但直到现在我还没多运气..

希望有人可以帮助我..

这是我尝试做的一个代码:

System.Reflection.PropertyInfo isreadonly = typeof(System.Collections.Specialized.NameValueCollection).GetProperty( "IsReadOnly", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
isreadonly.SetValue(this.Request.QueryString, false, null);
this.Request.QueryString.Remove("abc");

1 个答案:

答案 0 :(得分:7)

请求的网址无法更改。请求的URL是用户请求的,它已经发生在过去。

您可能希望将用户重定向到不带查询字符串的网址。取自this question ...

var uri = new Uri("http://www.example.com/mypage.aspx?myvalue1=hello&myvalue2=goodbye");
string path = uri.GetLeftPart(UriPartial.Path);
return Redirect(path);