I have seen some links that tells how to use web client but one thing is still un clear to me as i am not sharp developer.
- Dose this implements POST
- Difference between HttpWebRequest
- How to determine Fields from page source in which values are to be placed
- How values should be placed
I studied http://www.daveamenta.com/tag/webclient/
It would be great if some one gives an example of html feilds and how to use them in web client
Yes, you can use the
UploadString,UploadData, andUploadValuesmethodsBasically,
WebClientis just a wrapper forWebRequest(FtpWebRequest,HttpWebRequest…), to make it easier to use. It doesn’t give you as much control, but it’s enough for simple scenariosI don’t really understand what you mean…
Are you talking about form fields? You can use the
UploadValuesmethod, which does the same as submitting an HTML form with POST