Đọc Mã HTML Từ Website Với C# - Lập Trình VB.NET
Có thể bạn quan tâm
Bài viết này mình giới thiệu với mấy bạn cách đọc lấy mã HTML trong một website như thế nào? Chỉ cần vài dòng code là bạn có thể thực hiên được. Trước hết bạn thiết kế form như sau:
- Sau khi các bạn thiết kế form như hình trên bạn viết cho mình 3 thủ tục sau:
+ Thủ tục đọc lấy mã HTML:
private void processHTML(String htmlContent) { // Obtain the document interface IHTMLDocument2 htmlDocument = (IHTMLDocument2)new mshtml.HTMLDocument(); // Construct the document htmlDocument.write(htmlContent); listBox1.Items.Clear(); // Extract all image elements IHTMLElementCollection imgElements = htmlDocument.images; // Iterate through each image element foreach (IHTMLImgElement img in imgElements) { listBox1.Items.Add(img.src); } } private void LoadHTML() { // WebClient object WebClient client = new WebClient(); // Retrieve resource as a stream Stream data = client.OpenRead(new Uri(textBox2.Text)); // Retrive the text StreamReader reader = new StreamReader(data); string htmlContent = reader.ReadToEnd(); textBox1.Text = htmlContent; // Call function to process HTML Content processHTML(htmlContent); // Cleanup data.Close(); reader.Close(); }+ Kế tiếp bạn viết thủ lục lấy hình ảnh trên trang website:
private void previewGallery() { // Iterate through all the items in the listbox for (int i = 0; i < listBox1.Items.Count - 1; i++) { // Create PictureBox dynamically // and set its properties PictureBox pic = new PictureBox(); pic.Width = 100; pic.Height = 100; pic.SizeMode = PictureBoxSizeMode.StretchImage; // Assign location of picture // from the listbox pic.ImageLocation = listBox1.Items[i].ToString(); // Add PictureBox to a panel flowLayoutPanel1.Controls.Add(pic); } }- Bây giờ sử dụng chúng như thế nào đây, tại nút "Thực hiện" bản chỉ gọi đến hàm LoadHTML(), còn tại nút load hình ảnh bạn gọi đến hàm previewGallery().
Hy vọng với thủ thuật nhỏ giúp ích cho các bạn.
Download Project
Tags: http requesthtmlTừ khóa » Chèn Html Vào C#
-
Chỉnh Sửa HTML Trong C# - .NET - Aspose
-
Get HTML Code From A Website C# | Nhận Mã HTML Từ Một Trang ...
-
(ASP.NET Core) Tạo ứng Dụng Trang Web đầu Tiên C# CSharp
-
Nhúng File Html Vào Web Brower Trong C - Cộng đồng C Việt
-
[] Hướng Dẫn Chuyển HTML Tĩnh Sang ASP.NET
-
Xây Dựng HTML Form Trong ASP.NET Core - TEDU
-
Sử Dụng ValidateInput Và AllowHtml Trong HTML MVC(C#)
-
Cú Pháp Razor Cơ Bản, Biểu Thức Và Khối Code | Tự Học ICT
-
W3Schools How TO - Code Snippets For HTML, CSS And JavaScript
-
Lập Trình Với C#: Chương 1 (Phần VI) - Hanoi Aptech
-
Series C# Hay Ho: Tránh Xa Web Form, CÀNG XA CÀNG TỐT
-
Bài 7: Các Thẻ đoạn Văn Trong HTML - Tìm ở đây
-
Làm Thế Nào để Chèn Hình ảnh Trong Liên Kết Hành động Html? Asp ...
-
[C#] Hướng Dẫn Xây Dựng Trình Soạn Thảo Wysiwyg HTML