Example #1
0
        public static string Retrieve(string sssName)
        {
            string returnVal = SSS.Retrieve(sssName);

            if (returnVal == string.Empty)
            {
                returnVal = Cookie.Retrieve(sssName);
                if (returnVal != string.Empty)
                {
                    SSS.Save(sssName, returnVal);
                }
            }
            return(returnVal);
        }
Example #2
0
 public static void Save(string sssName, string value)
 {
     SSS.Save(sssName, value);
     Cookie.Save(sssName, value);
 }
Example #3
0
 public static void Delete(string sssName)
 {
     SSS.Delete(sssName);
     Cookie.Delete(sssName);
 }