我正在做一个项目,我想做的是清除我的 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");