Hi All,
I've a problem using IE web browser component. I need to send a file
into a server and to receive progress information during the upload.
The IE webbrowser component have a nice event to retrieve progress changes.
My problem is that with the Navigate method instead of use POST method
the component send always a GET method altought I initialize the post
data field.
How can I do?
This is my code:
<code>
var webBrowser = new ActiveXObject(" InternetExplore r.Application" );
webBrowser.Navi gate("http://localhost:12000/prova.txt", "", "",
"PostData", "Content-Type: application/x-www-form-urlencoded\r\n" );
</code>
Thank you
Daniele
I've a problem using IE web browser component. I need to send a file
into a server and to receive progress information during the upload.
The IE webbrowser component have a nice event to retrieve progress changes.
My problem is that with the Navigate method instead of use POST method
the component send always a GET method altought I initialize the post
data field.
How can I do?
This is my code:
<code>
var webBrowser = new ActiveXObject(" InternetExplore r.Application" );
webBrowser.Navi gate("http://localhost:12000/prova.txt", "", "",
"PostData", "Content-Type: application/x-www-form-urlencoded\r\n" );
</code>
Thank you
Daniele
Comment