How do you login to a webpage and retrieve its content in C#?

前端 未结 7 2037
孤街浪徒
孤街浪徒 2020-12-30 17:13

How do you login to a webpage and retrieve its content in C#?

7条回答
  •  滥情空心
    2020-12-30 17:50

    Try this:

    public string GetContent(string url)  
    { 
      using (System.Net.WebClient client =new System.Net.WebClient()) 
      { 
      return client.DownloadString(url); 
      } 
    } 
    

提交回复
热议问题