XmlDataDocument x = null; if (Cache["xmldata"] == null) { x = ComplexProcess(); Cache.Insert("xmldata", x, null, DateTime.MaxValue, TimeSpan.FromHours(12), CacheItemPriority.High, null); } else { x = Cache["xmldata"]; }
Build Your Own ASP.NET Website Using C# & VB.NET