Currently i am doing this way
string url = (“http://localhost/json.aspx”);
WebClient xmlClient = new WebClient();
xmlClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(XMLFileLoaded);
xmlClient.DownloadStringAsync(new Uri(url));
However how do i add values that should be send together with the downloadstring?
For example in android, i am able to use namevalue pair
httppost.setEntity( new UrlEncodedFormEntity( nameValuePairs, "UTF-8"));
I would strongly recommend that you use RestSharp for this, rather than attempting to hand-code it.