を取得します。あなたのコンテンツのみを取得しているループリストのURLと私は私のプログラムは、私のリストからURLに移動し、次のURLを移動して、再びこのプロセスを繰り返しよりも、文字列にsurceページを保存よりもしたいのC# 上のWebBrowserコントロールに問題があり、リストresaltウェブブラウザのC#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication37
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
WebBrowser web = new WebBrowser();
private void button1_Click(object sender, EventArgs e)
{
string[] url = new string[3] {"www.google.com","www.yahoo.com","www.bing.com" };
web.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(web_DocumentCompleted);
web.ScriptErrorsSuppressed = true;
for (int i = 0; i < url.Length; i++)
{
web.Navigate(url[i]);
}
}
void web_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
string surce = web.DocumentText;
}
}
}
「surce」で正確に何をやっていますか? – Dispersia