Tuesday, October 4, 2011

Caching works with Web Services.....


DO YOU KNOW CACHING WORKS WITH A WEBSERVICE.....

using System.Web.Caching;

...

HttpContext.Current.Cache[key] == "some value";
string value = HttpContext.Current.Cache[key].ToString();

No comments:

Post a Comment