欢迎光临
我们一直在努力

asp.net中散列加密密码_asp.net技巧

建站超值云服务器,限时71元/月

private void LoginButton_Click(object sender,System.EventArgs e)
{
        String sql=String.Format(“select password from Administrator where 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);//转到请求页
                }
                else
                        Result.Text=”密码错误”;
        }
        else
                Result.Text=”用户不存在”;
        conn.Close();
}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp.net中散列加密密码_asp.net技巧
分享到: 更多 (0)