본문 바로가기
etc/프로그래밍

C# - HtmlAgilityPack 설치

by 칸타렌서 2020. 11. 2.

1. NuGet 패키지 관리 클릭

 

2. 검색 후 설치

 

 

3. using

 

 

 

4. 코딩

 

 

 

        private void button3_Click(object sender, EventArgs e)
        {
            // input
            WebClient wc = new WebClient();
            wc.Encoding = Encoding.UTF8;
            string html = wc.DownloadString("http://www.naver.com");
            agi.HtmlDocument doc = new agi.HtmlDocument();
            doc.LoadHtml(html);
            textBox4.Text = doc.GetElementbyId("newsstand").InnerText;
        }

댓글