如何捕获整个查询字符串?

时间:2011-05-27 19:31:21

标签: c# asp.net query-string

我想将所有来自后页的查询字符串捕获到字符串中并作为Response.Redirect(“myPage.aspx?ALL Query String Goes Here”)抛出。

我该怎么做?谢谢!

2 个答案:

答案 0 :(得分:5)

这将为您提供原始查询字符串。

Request.Url.Query

答案 1 :(得分:1)

这对我有用:

string redirectURL = "http://www.example.com/myPage.aspx?" + Request.QueryString.ToString(); 
Response.Redirect(redirectURL);