引用:using System.Web.Security
加密:FormsAuthentication.HashPasswordForStoringInConfigFile(txtPWD.Text, "MD5")
解密:new General.Encryption().MD5(txtPassword.Text.Trim()
显示提示框:
ImageButton ibtn = (ImageButton)sender;
ScriptManager.RegisterClientScriptBlock(ibtn, ibtn.GetType(), ibtn.UniqueID, "alert('用户名/密码不正确或该帐号尚未启用。');", true);
退出时候显示对话框关闭后连接网页:
new General.MessageTips().AlertAndRedirect("退出系统成功!", "login.aspx");