ASP.Net - 获取已重定向到的页面的查询字符串

时间:2013-09-03 14:27:12

标签: asp.net http oauth request

以下代码:

 WebRequest request = WebRequest.Create("http://localhost/sandbox/htmlpage1.htm");

 WebResponse response = request.GetResponse();

 string url = ((HttpWebResponse)response).ResponseUri.ToString();

正在请求htmlpage1.html,而htmlpage1.html又会重定向到另一个页面(otherpage.htm?qs = data)。如何从htmlpage1.htm以编程方式重定向的“其他页面”获取查询字符串。这是针对winforms应用程序的LinkedIn OAuth2例程。我需要url变量来给我otherpage.htm的查询字符串而不是htmlpage1.htm。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

在ASP.Net中,我们可以使用

获取查询字符串

c#:Request.QueryString [“”]。在你的情况下说它可能是

的Request.QueryString [ “QS”]。