Hello!
Tell me, please, how can you programmatically fill in the field: <input type="file"...>
in WebBrowser C #?
I wanted to make it through WinAPI, but maybe there is another solution?
On the Internet, I could not find anything!
Hello!
Tell me, please, how can you programmatically fill in the field: <input type="file"...>
in WebBrowser C #?
I wanted to make it through WinAPI, but maybe there is another solution?
On the Internet, I could not find anything!
Somewhere in the depths of WebBrowser there is a property that contains the code of the open page, if it is writable, you rip out the code, edit it (for example, through HtmlAgilityPack) and push it back.
Source: https://ru.stackoverflow.com/questions/384600/
All Articles