0
public string F03_veri_textbox(string veriadi3)
      {
          string Veritext;
          Veritext = webBrowser_sample.Document.GetElementById(veriadi3).GetAttribute("value");

          return Veritext;

      }

我在 Form1 中有一个 webBrowser_sample 对象。我使用此功能从特定网页收集数据。它工作正常。

我想从一个类中使用这个函数。

但是当我尝试移动它时,C# 说“当前上下文中不存在名称'webBrowser_sample'”。

如果我在类中定义一个新的 webBrowser_sample,它将创建新的 webBrowser_sample 对象。

所以我不能使用它,因为我在浏览此浏览器时使用此功能收集数据。

4

1 回答 1

1

将 'mytype' 替换为 webBrowser_sample 的对象类型。您需要传入对该对象的引用,如下面的代码所示。另一种选择是使用扩展方法。

public string F03_veri_textbox(string veriadi3, mytype browser)
  {
      string Veritext;
      Veritext = browser.Document.GetElementById(veriadi3).GetAttribute("value");

      return Veritext;

  }
于 2013-08-07T06:11:52.143 回答