1

目前,我在 WebBrowser 组件中加载了一个网站,该组件不断更改<a>页面内部某个特定内容的内容。为了让我获取数据,我必须每 5 秒创建另一个 WebRequest,只是为了刷新数据(我认为它们被称为动态页面)。我尝试从 WebBrowser ( WebBrowser.DocumentText) 获取数据,但值保持不变,即使我很确定它已更改,因为我可以看到它已更改。我认为每 5 秒的 webrequest 会占用不必要的内存空间,并且可以更轻松地完成此操作。

你们可能知道我这样做的方法吗?

4

2 回答 2

2

在 Winforms 猜测。您需要使用 Document 属性来回读 DOM。这是一个例子。启动一个新的 Winforms 项目并在表单上放置一个 WebBrowser。然后是标签和计时器。使代码如下所示:

public partial class Form1 : Form {
    public Form1() {
        InitializeComponent();
        webBrowser1.Url = new Uri("http://stackoverflow.com/questions/10781011/get-source-of-webpage-in-webbrowser-c-sharp");
        webBrowser1.DocumentCompleted += webBrowser1_DocumentCompleted;
        timer1.Interval = 100;
        timer1.Tick += new EventHandler(timer1_Tick);
    }

    void timer1_Tick(object sender, EventArgs e) {
        var elem = webBrowser1.Document.GetElementById("wmd-input");
        label1.Text = elem.InnerText;
    }

    void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) {
        timer1.Enabled = true;
    }
}

浏览器将导航到您的问题。在答案框中输入内容,注意标签如何显示您输入的内容。

您需要调整此代码以使用您的特定网页,更改“wmd-input”元素名称。使用 DOM 检查工具来查找名称。我喜欢萤火虫。

于 2012-05-28T08:55:44.593 回答
0

您可以尝试通过 JavaScript 获取源代码。

使用InvokeScript方法执行return document.documentElement.outerHTML;

这将返回一个Object您应该能够将其类型转换为String.

于 2012-05-28T07:57:29.203 回答