将模拟数据添加到WebBrowser控件

时间:2009-08-07 15:18:07

标签: c# .net

我正在创建一个WebBrowser控件

webBrowser = new WebBrowser();
webBrowser.Navigate("File.html");

该文件具有该页面的HTML标记。我有一些我想在html文件中插入的模拟数据。有没有办法做到这一点 ?模拟数据与html文件上的控件绑定。

1 个答案:

答案 0 :(得分:0)

 IHTMLTxtRange txt = (IHTMLTxtRange)Document.selection.createRange();
 txt.pasteHTML(HtmlString);

其中

public IHTMLDocument2 Document
 {
      get
      {
          return webBrowser.Document as IHTMLDocument2;
      }
 }