以下代码:
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。任何帮助将不胜感激。
答案 0 :(得分:0)
在ASP.Net中,我们可以使用
获取查询字符串c#:Request.QueryString [“”]。在你的情况下说它可能是
的Request.QueryString [ “QS”]。