ASP.NET での暗号化されたパスワードのハッシュ化
著者:Eve Cole
更新時間:2009-06-30 16:44:17
private void LoginButton_Click(オブジェクト送信者,System.EventArgs e)
{
String sql=String.Format("AdminID='{0}',UseridBox.Textの管理者からパスワードを選択してください);
SqlConnection conn=new SqlConnection(ConfigurationSettings.AppSettings["connectionString"]);
SqlDataReader myreader=new SqlCommand(sql,conn).ExecuteReader();
if(myreader.Read())
{
String hashed=FormsAuthentication.HashPasswordForStoringInConfigFile(PasswordTextBox.Text,"SHA1");
// ユーザが入力した秘密コードの後で、データ ストアのコードの値と再度比較します。
if(hash==myreader["password"]).ToString())
{
FormsAuthentication.RedirectFromLoginPage(UseridBox.Text,true);//转到请要求页
}
それ以外
Result.Text="密码错误";
}
それ以外
Result.Text="用户不存在";
conn.Close();
}