예제 #1
0
파일: Utility.cs 프로젝트: bylu/baiyiWeb
 public static float StrToFloat(string strValue, float defValue)
 {
     return(TypeParse.StrToFloat(strValue, defValue));
 }
예제 #2
0
 public static float GetQueryFloat(string strName, float defValue)
 {
     return(TypeParse.StrToFloat(HttpContext.Current.Request.QueryString[strName], defValue));
 }