Exemple #1
0
 public static int GetSessionInt(string pvName)
 {
     return(CSafeDataHelper.SafeInt(GetSessionValue(pvName)));
 }
Exemple #2
0
 public static float GetSessionFloat(string pvName)
 {
     return(CSafeDataHelper.SafeFloat(GetSessionValue(pvName)));
 }
Exemple #3
0
 public static long GetSessionLong(string pvName)
 {
     return(CSafeDataHelper.SafeLong(GetSessionValue(pvName)));
 }
Exemple #4
0
 public static double GetSessionDouble(string pvName)
 {
     return(CSafeDataHelper.SafeDouble(GetSessionValue(pvName)));
 }
Exemple #5
0
 public static bool GetSessionBoolean(string pvName)
 {
     return(CSafeDataHelper.SafeBool(GetSessionValue(pvName)));
 }
Exemple #6
0
 public static DateTime GetSessionDatetime(string pvName)
 {
     return(CSafeDataHelper.SafeDateTime(GetSessionValue(pvName)));
 }
Exemple #7
0
 public static string GetSessionString(string pvName)
 {
     return(CSafeDataHelper.SafeString(GetSessionValue(pvName)).Trim());
 }
Exemple #8
0
 public static string GetHttpReferer(HttpRequest request)
 {
     return(CSafeDataHelper.SafeString(request.ServerVariables["HTTP_REFERER"]));
 }