摘要: ASP.NET刷新页面的六种方法 第一: private void Button1_Click( object sender, System.EventArgs e ) { Response.Redirect( Request.Url.ToString( ) ); } 第二: private void Button2_Click( object sender, Syste... 阅读全文
posted @ 2008-05-29 17:52 ChouKei 阅读(569) 评论(0) 推荐(0)
摘要: C#加密解密方法 1、方法一 (不可逆加密) public string EncryptPassword(string PasswordString,string PasswordFormat ) { string encryptPassword = null; if (PasswordFormat="SHA1"){ encryptPassword=... 阅读全文
posted @ 2008-05-29 10:56 ChouKei 阅读(2452) 评论(1) 推荐(0)