我想将所有来自后页的查询字符串捕获到字符串中并作为Response.Redirect(“myPage.aspx?ALL Query String Goes Here”)抛出。
我该怎么做?谢谢!
答案 0 :(得分:5)
这将为您提供原始查询字符串。
Request.Url.Query
答案 1 :(得分:1)
这对我有用:
string redirectURL = "http://www.example.com/myPage.aspx?" + Request.QueryString.ToString();
Response.Redirect(redirectURL);