我想访问一个网页(必须访问它,不需要阅读,修改等等。只需访问)。我不想使用webbrowser。
答案 0 :(得分:6)
只需执行cURL GET请求。
curl http://example.com/
如果你想使用C#,那么
using System.Net;
string url = "https://www.example.com/";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream resStream = response.GetResponseStream();
答案 1 :(得分:0)
此外,您可以使用Fiddler向远程服务器发送请求(这对于服务调试非常有用)。
答案 2 :(得分:0)
尝试使用WebClient
class:
例如:
WebClient client = new WebClient ();
string reply = client.DownloadString (address);