Example #1
0
 public void SetSession(string key, object value)
 {
     if (string.IsNullOrWhiteSpace(key))
     {
         throw new Exception("Key is Null or Epmty");
     }
     key = CreatSessionCookie() + "_" + key;
     CacheAction.SetCache(key, value);
 }