form post

  • Thread starter Thread starter guoqi zheng
  • Start date Start date
G

guoqi zheng

I know in webclient class, there is a possibility to post form data to a
remote url, but how can I not only just post, I need to redirect user to
that page as well.

So what I want is just like a user click submit button of a regular html
form and this form post to a remote URL, user will go there as well...

How can I do this? any example??

regards,

Guoqi Zheng
http://www.ureader.com
 
Hi Guogi:

After you post with the WebClient class (and presumably retrieve some
values from the response), you could just Reponse.Redirect to the
other URL. If you want to pass along cookie information though, you'll
have problems.
 
Back
Top