how to modify HttpRequest QueryString value in class library,i current can get QueryString value and modify,but how to write the modified QueryString to HttpRequest:
public static HttpRequest ModiQueryString(HttpRequest request)
{
var nv = new NameValueCollection(request.QueryString);
foreach (string key in nv.Keys)
{
nv[key] = "abc";
}
//here how to let request.QueryString equal nv
return request;
}
because the request.QueryString is read-only,so how can i do? who can help me?thanks
if i create a new HttpRequest,is i can use:
StringBuilder newQuery=new StringBuilder();
foreach(string key in nv.Keys)
{
newQuery.AppendFormat("{0}={1}",key,FilterKeyWord(nv[key]));
}
HttpRequest newRequest = new HttpRequest("", request.Url, newQuery.ToString());
return newRequest;