0

以下代码:

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

 WebResponse response = request.GetResponse();

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

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

4

1 回答 1

0

在 ASP.Net 中,我们可以通过使用获取查询字符串

c# : Request.QueryString[""] 。说你的情况可能是

Request.QueryString["qs"]。

于 2013-09-03T14:51:12.027 回答