Reg. Posting data to other url
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Im posting some data to this URL. Can someone tell me where i can post data to this url like this. string uriString = "http://domainname.com/incoming.asp"; WebClient myWebClient = new WebClient(); myWebClient.Headers.Add("Content-Type","application/x-www-form-urlencoded"); (or ) do we need to post only to string uriString = "http://domainname.com/"; WebClient myWebClient = new WebClient(); myWebClient.Headers.Add("Content-Type","application/x-www-form-urlencoded"); Can anyone help me how to go about this? Abraham