摘要:
Reducing flicker, blinking inDataGridViewhttp://www.codeproject.com/Tips/390496/Reducing-flicker-blinking-in-DataGridViewOne of my projectrequirement ... 阅读全文
摘要:
using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebContro... 阅读全文
摘要:
codeprject上看到的一个漂亮的ProgressBar控件。是用vb.net开发的。C#直接在工具箱中引用即可。地址:http://www.codeproject.com/Articles/31903/A-Better-ProgressBar-Using-Panels 阅读全文
摘要:
本人转载:http://www.cnblogs.com/panshenglu/archive/2009/09/21/1571258.html在WEB系统中,打印的确是个烦人的问题。要么自己开发打印控件,如果项目时间紧,肯定来不及。要么购买成熟的打印控件,如果是大项目可以考虑,但如果项目只有几K到1、... 阅读全文
摘要:
public static bool IsEmail(string email){ String strExp = @"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"; Regex r = new Regex(strExp); Match ... 阅读全文
摘要:
/// /// 校验手机号码是否符合标准。 /// /// /// public static bool ValidateMobile(string mobile) { if (stri... 阅读全文
摘要:
ALTER PROC [dbo].[Student_Friend_Get] @startRowIndexId INT, @maxNumberRows INT, @schoolId INT, @gradeId INT, @cI... 阅读全文
摘要:
StreamReader sr = new StreamReader("C:\\Users\\Administrator\\Desktop\\blogbbs\\dd.txt",Encoding.Default); StringBuilder sb = new StringBui... 阅读全文
摘要:
/// /// /// 常用工具类——直接在浏览器输出数据 /// ------------------------------------------------------------- /// DumpDataTable:接在浏览器输出数据DataTable... 阅读全文
摘要:
using System;using System.Configuration;using System.Collections.Generic;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.Ht... 阅读全文
摘要:
/// 常用工具类——Excel操作类 /// ------------------------------------------------ /// CreateConnection:根据Excel文件路径和EXCEL驱动版本生成OleConnection对象实例 /// ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Diagnostics; namespace Utils{ /// /// /// 常用工具类——系统日志类 //... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Reflection;namespace Utils{ /// /// /// 常用工具类——应用程序属性信息访问类 ... 阅读全文
摘要:
//================二进制相关转换类============== #region 将文件转换为二进制数组 /// /// 将文件转换为二进制数组 /// /// 文件完整路径 /// 二进制数... 阅读全文
摘要:
/// FilesUpload:工具方法:ASP.NET上传文件的方法 /// FileExists:返回文件是否存在 /// IsImgFilename:判断文件名是否为浏览器可以直接显示的图片文件名 /// CopyFiles:复制指定目录的所有文件 /// M... 阅读全文