Asp.net(C#)常用函数表
摘要:1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月 int 月=currentTime.Month; 1.4 取当前日 in...
阅读全文
posted @
2008-07-10 15:17
草原和大树
阅读(306)
推荐(1)
ASP.NET FileUp控件文件上传文件类型总结
摘要:if (FileUp.PostedFile.ContentType == "image/pjpeg" || FileUp.PostedFile.ContentType == "image/gif" || FileUp.PostedFile.ContentType == "image/bmp") //设置上传文件类型 加上 FileUp.PostedFile.ContentType=="app...
阅读全文
posted @
2008-07-10 13:29
草原和大树
阅读(2227)
推荐(0)
正则表达式部分总结(待续...........)如有错误,望各位高人指教
摘要:"^\\d+$" //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$" //正整数 "^((-\\d+)|(0+))$" //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]*$" //负整数 "^-?\\d+$" //整数 "^\\d+(\\.\\d+)?$" //非负浮点数...
阅读全文
posted @
2008-07-10 13:28
草原和大树
阅读(281)
推荐(0)