T
Taggy
hi,
Can someone help me with this.
I am having this codes:
WebRequest myRequest = WebRequest.Create( myurl ); -line1
WebResponse myResponse = myRequest.GetResponse(); -line2
......
to get a reply from a webserver.
The reply is actually a form with a textbox and a button.
Can i simulate filling up the textbox and submit the form to get another
reply from the server ?
I assume after line2, my codes should already have a "session/connection"
with the webserver now, can i post back to the server to get another reply ?
(eg. myurl?x=1)
Thanks & Regards
Taggy
Can someone help me with this.
I am having this codes:
WebRequest myRequest = WebRequest.Create( myurl ); -line1
WebResponse myResponse = myRequest.GetResponse(); -line2
......
to get a reply from a webserver.
The reply is actually a form with a textbox and a button.
Can i simulate filling up the textbox and submit the form to get another
reply from the server ?
I assume after line2, my codes should already have a "session/connection"
with the webserver now, can i post back to the server to get another reply ?
(eg. myurl?x=1)
Thanks & Regards
Taggy