Exemplo n.º 1
0
 public static String getPropriedade(string nome)
 {
     if (HttpContext.Current.Session[nome] == null)
     {
         HttpContext.Current.Session[nome] = String.Empty;
         if (SessionFacade.getCookie(nome) != String.Empty)
         {
             HttpContext.Current.Session[nome] = SessionFacade.getCookie(nome);
         }
     }
     return(HttpContext.Current.Session[nome].ToString());
 }