Example #1
0
 public static decimal GetFormOracleNumber(string strName, decimal defValue)
 {
     if (HttpContext.Current.Request.Form[strName] == null)
     {
         return(defValue);
     }
     return(Utils.StrToDecimal(HttpContext.Current.Request.Form[strName], defValue));
 }
Example #2
0
 /// <summary>
 /// 获得指定表单参数的decimal类型值
 /// </summary>
 /// <param name="strName">表单参数</param>
 /// <param name="defValue">缺省值</param>
 /// <returns>表单参数的decimal类型值</returns>
 public static decimal GetFormDecimal(string strName, decimal defValue)
 {
     return(Utils.StrToDecimal(HttpContext.Current.Request.Form[strName], defValue));
 }