I have a winform application that i embeded a webrowser control.
I load an html in the webbrowser control, fill the form in the html and click submit
the problem is that i need to be able to capture the submitted data as variables in the winform app. id this possible? please help me
I have a winform application that i embeded a webrowser control. I load an
Share
you can attach to button click event code:
and in handler you can get form fields from:
It allows you to capture filled form actually before it’s submited. Ofcource all this stuff must be done in DocumentCompleted Event.
Hope it helps.