09 2011 档案

摘要:项目是vs2008版升级到vs2010发布网站到IIS注意事项:服务器需要安装:1、.net framework4.02、IIS 6.03、2010版的水晶报表 阅读全文
posted @ 2011-09-28 12:00 辰冉 阅读(235) 评论(0) 推荐(0)
摘要:public static byte[] EncryptPassword(string password) { byte[] bytes = new UnicodeEncoding().GetBytes(password); SHA1 sha = new SHA1CryptoServiceProvider(); return sha.ComputeHash(bytes); } protected void btnLogin_Click(object sender, EventArgs e) { byte[] encPassword = EncryptPassword("111&quo 阅读全文
posted @ 2011-09-06 16:46 辰冉 阅读(391) 评论(0) 推荐(0)