3

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

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

希望有人可以帮助我。

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

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");
4

1 回答 1

7

请求的 url 不能更改。Request 的 url 是用户请求的,过去已经发生过。

您可能希望将用户重定向到不带查询字符串的 url。取自这个问题...

var uri = new Uri("http://www.example.com/mypage.aspx?myvalue1=hello&myvalue2=goodbye");
string path = uri.GetLeftPart(UriPartial.Path);
return Redirect(path);
于 2013-11-04T15:30:08.213 回答