Your Ad Here

Posted By

krisdb on 12/06/07


Tagged

c-sharp


Versions (?)

Who likes this?

1 person have marked this snippet as a favorite

umang_nine


Cache


 / Published in: C#
 

  1. if (Cache["name"] == null)
  2. Cache.Insert("name", "value", null, DateTime.Now.AddMinutes(10), TimeSpan.Zero);
  3.  
  4. Cache["name"].ToString();

Report this snippet  

You need to login to post a comment.