Hi I want to implement Caching in Web Service. I have written the following code but it is not working as expected,all the time it is giving fresh result(not cached result) [WebMethod(CacheDuration=360)] public string GetDate() { string s=DateTime.Now.ToString(); return s; } Please suggest