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 对象。
所以我不能使用它,因为我在浏览此浏览器时使用此功能收集数据。