我需要一个代码,我可以在通过登录对其进行身份验证后使用它来使网站上的页面可访问,这意味着我希望仅在特定用户登录时才能访问它。任何可以帮助我的人。
(注:我是个瘦子,还是个新手)
提前致谢
我需要一个代码,我可以在通过登录对其进行身份验证后使用它来使网站上的页面可访问,这意味着我希望仅在特定用户登录时才能访问它。任何可以帮助我的人。
(注:我是个瘦子,还是个新手)
提前致谢
然后我为你写了一个非常简单的程序
readonly SqlConnection sqlCon = new SqlConnection(ConfigurationManager.ConnectionStrings["VerbaLinksConString"].ToString());
try
{
SqlCommand cmd = new SqlCommand("Select txt_Password from table where txt_user_name = '"+txtUserName.Text+"' and txt_Pwd = '"+txtPassword.Text+"'",sqlCon);
sqlCon.Open();
SqlDataReader dr = cmd.ExecuteReader();
If(dr.Read())
{
Response.Redirect("HomePage.aspx");
}
else
{
Response.Write("Either userId or Password is wrong");
}
SqlCon.Close();
}
Catch(SqlException ex)
{
}