我有一个 WPF WebBrowser 应用程序,我想自动在 html 页面上上传文件。我希望这样的事情可能会奏效,但它不会:
string _inputId = "File_Input";
string _attrName = "value";
string _attrValue = "C:/MyFile.txt";
((mshtml.IHTMLElement)doc.all.item(_inputId)).setAttribute(_attrName, _attrValue);
我想这与无法在 JavaScript 中设置该值有关。有没有解决的办法?
谢谢