0
我有一個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設置該值。有沒有解決的辦法?
謝謝