程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> 用簡單登錄,練習asp.net

用簡單登錄,練習asp.net

編輯:關於ASP.NET

做這個LoginDemo的目的是練習訪問數據庫,使用存儲過程,最後是寫成用戶類。

頁面組成:Default.aspx,LogSuccess.htm,LogFailure.htm

數據庫test,表User:UserID(自增),UserName,PassWord

前台:簡單的登陸界面

後台代碼:

1、很久以前做第一個例子的時候用的:

代碼

protected void CheckAccount()
   {
     string strConn = "server=localhost;uid=sa;pwd=123;database=test;";
     SqlConnection conn = new SqlConnection(strConn);
     String strComm = "Select * from Users where UserName ='" + UserName.Text + "' and PassWord= '" + PassWord.Text + "'";
     SqlCommand comm = new SqlCommand(strComm, conn);
     conn.Open();
     SqlDataReader dr = comm.ExecuteReader();
     if (dr.Read())
     {
       Response.Redirect("LogSuccess.htm");
     }
     else
     {
       Response.Redirect("LogFailure.htm");
     }
     conn.Close();
   }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved