問題與Web客戶端DownloadString:問題與Web客戶端DownloadString
我的代碼〜
WebClient Wc = new WebClient();
string myUrl = "http://www.google.com";
string myStr = string.Empty;
myStr = Wc.DownloadString(myUrl);
Console.Write(myStr);
錯誤: 遠程服務器返回錯誤:(401)未經授權。
注:
上網是否正常工作,然後什麼都可以用這個問題?
即使這似乎不起作用: NetworkCredential Nc = new NetworkCredential(「username」,「password」,「domain」); Wc.Credentials = Nc; – Pratik 2011-05-03 14:27:42