我怎样才能修改查询字符串?
我已经捕获了像这样的查询字符串
qs = Request.QueryString["flag"].ToString();
然后使用修改后的值重建查询字符串 和response.redirect(url& qs)到它
答案 0 :(得分:2)
虽然我不确定我是否建议大量使用这种方法,如果你想通过一些更改重建路径和查询字符串......你可以将查询字符串转换为可编辑的集合,修改它,然后从你的新系列中重建它。
高飞的例子......
// create dictionary (editable collection) of querystring
var qs = Request.QueryString.AllKeys
.ToDictionary(k => k, k => Request.QueryString[k]);
// modify querystring
qs["flag"] = "2";
// rebuild querystring
var redir = string.Format("{0}{1}", Request.Path,
qs.Aggregate(new StringBuilder(),
(sb, arg) => sb.AppendFormat("{0}{1}={2}",
sb.Length > 0 ? "&" : "?", arg.Key, arg.Value)));
// do something with it
Response.Redirect(redir);
虽然我绝对不会为生产代码推荐以下内容,但出于测试目的,您可以使用反射来使查询字符串集合可编辑。
// Get the protected "IsReadOnly" property of the collection
System.Reflection.PropertyInfo prop = Request.QueryString.GetType()
.GetProperty("IsReadOnly", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
// Set the property false (writable)
prop.SetValue(Request.QueryString, false, null);
// Have your way with it.
Request.QueryString.Add("flag", "2");
答案 1 :(得分:1)
我不确定我是否理解你的问题。你可以改变字符串qs并使用。
qs = qs + "modification"
Response.Redirect("this.aspx?flag=" + qs )
答案 2 :(得分:1)
Request
类中的内容处理了将您带到页面的请求。您无法编辑它,因为客户端构建它,而不是服务器。
答案 3 :(得分:1)
要根据请求的属性组合所需的目标网址,请使用以下内容:
string destUrl = string.Format("{0}://{1}{2}/", Request.Url.Scheme, Request.Url.Authority, Request.Url.AbsolutePath);
if (destUrl.EndsWith("/"))
destUrl = destUrl.TrimEnd(new char[] { '/' });
if (!string.IsNullOrEmpty(Request.QueryString["paramName"])) {
destUrl = string.Format("{0}?paramName={1}", destUrl, "paramValueHere");
Response.Redirect(destUrl);
}