I\'ve read that in order to disable caching while using get and post methods in HttpClient, I need to use a WebRequestHandler as my HttpClien
This for windows phone to get fresh data instead of catching data
Using(HttpClient httpClient = new HttpClient())
{
httpClient.DefaultRequestHeaders.IfModifiedSince = DateTimeOffset.Now;
//your code goes here`enter code here`
}
another alternative is set
Response.Cache.SetCacheability(HttpCacheability.NoCache);
in server page Page_Load if u get data from aspx page