-1

我需要一个代码,我可以在通过登录对其进行身份验证后使用它来使网站上的页面可访问,这意味着我希望仅在特定用户登录时才能访问它。任何可以帮助我的人。

(注:我是个瘦子,还是个新手)

提前致谢

4

2 回答 2

0

表单认证怎么样?http://www.codeproject.com/Articles/13872/Form-authentication-and-authorization-in-ASP-NET

于 2013-04-29T12:34:08.690 回答
0

然后我为你写了一个非常简单的程序

 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)
 {

 }
于 2013-04-29T12:42:41.627 回答