摘要:
using System; using System.Data; using System.Xml; using System.Data.SqlClient; using System.Collections; using System.Configuration; namespace Projec 阅读全文
摘要:
#region 人民币大写 public static string CmycurD(decimal num) { string str1 = "零壹贰叁肆伍陆柒捌玖"; //0-9所对应的汉字 string str2 = "万仟佰拾亿仟佰拾万仟佰拾元角分"; //数字位所对应的汉字 string 阅读全文
摘要:
#region 数据有效性检查 //判断区号 public static bool IsAreaCode(string input) { return ((IsNumber(input) && (input.Length >= 3)) && (input.Length <= 5)); } //判断是 阅读全文
摘要:
#region 数据操作函数 //四舍五入 public static double Round(double dValue, int iDigs) { return Math.Round(dValue, iDigs); } //转换为Boolean public static bool CBool 阅读全文
摘要:
#region 初始化下拉列表 public static void InitDDL(string sSQL, DropDownList ddl, string sFieldID, string sFieldName, string sSelectFieldNameValue, bool bAll) 阅读全文
摘要:
#region 获取字符串首字母拼音 /// <summary> /// 获得一个字符串的汉语拼音码,XDesigner编制 /// </summary> /// <param name="strText">字符串</param> /// <returns>汉语拼音码,该字符串只包含大写的英文字母< 阅读全文
摘要:
#region SQL防注入漏洞的方法 /// <summary> /// SQL防注入漏洞的方法 /// </summary> /// <param name="strVar"></param> /// <returns>是否存在特定字符</returns> public static bool 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using Newtonsoft.Json; using System.Text; usin 阅读全文