我的天空(I Like the feeling)

导航

2007年11月10日 #

md5加密算法的实例

摘要: using System.Security.Cryptography; using System.Text; #region 加密密码,UserMd5(string str1) protected string UserMd5(string str1) { string cl1 = str1; string pwd = ""; MD5 md5 = MD5.Create(); /... 阅读全文

posted @ 2007-11-10 16:52 TBLANK 阅读(328) 评论(0) 推荐(0)

C# 汉字转拼音

摘要: /// /// 汉字转拼音缩写 /// Code By MuseStudio@hotmail.com /// 2004-11-30 /// /// 要转换的汉字字符串 /// 拼音缩写 public string GetPYString(string str) { ... 阅读全文

posted @ 2007-11-10 16:52 TBLANK 阅读(123) 评论(0) 推荐(0)

新数据网格简介

摘要: 新的 DataGridView 是 .NET 2.0 中的一个新控件,是针对 .NET 1.x 中功能较差的标准 DataGrid 控件而设计的。Matthew MacDonald 在本文中论述了许多改进,包括:DataGridView 支持大量自定义和细致的格式设置、灵活的大小调整和选择、更好的性能以及更丰富的事件模型。 .NET Framework 的前两个版本(.NET 1.0 和 .NET... 阅读全文

posted @ 2007-11-10 16:49 TBLANK 阅读(188) 评论(0) 推荐(0)