I have an issue with caching while developing an app using wp7. 1 and the httpwebrequest method.
HttpWebRequest request = HttpWebRequest. CreateHttp (s);
request. BeginGetResponse (new AsyncCallback (HandleResponse), request);
The result of the request is the same even in case of a different request content. And in the case of different parameters in the request. How can i fix this issue?
Thanks.
Usually I get around this adding a unique request identifier to the Uri
This won't work for all instances (as your Uri may already include query strings), but as an example
May this helps you. try it