1

我需要使用 C# 登录到一个网站,但是该网站在它使用 htaccess 样式弹出登录的页面中没有登录表单。我以前做过,但仅限于使用网页表单登录的网站。我尝试使用实时 http 标头捕获标头数据,但我没有看到登录帖子数据。

我将如何使用 C# 登录其中之一?

4

1 回答 1

1

尝试这个:

using (WebClient wc = new WebClient())
{
  wc.Credentials = new NetworkCredential("login", "password");
  string page = wc.DownloadString("http://example.com/");
}
于 2012-11-17T09:19:29.453 回答