Board logo

標題: 2011 03 26 資料庫使用者登入判斷程式碼(查詢 Select) [打印本頁]

作者: buy    時間: 2011-3-26 11:01     標題: 2011 03 26 資料庫使用者登入判斷程式碼(查詢 Select)

  1.             string UserID = tbxLoginUserId.Text;
  2.             string UserPW = tbxLoginUserPW.Text;
  3.             Database1Entities db = new Database1Entities();  //把資料庫實體化

  4.             //LinQ語法不曉得資料庫怎麼定義,所以選取時候預設結果是複數個。
  5.             var result = (from s in db.TestDB where s.UserID == UserID  select s).FirstOrDefault();

  6.             if (result == null)
  7.             {
  8.                 MessageBox.Show("查無此帳號,請先註冊帳號");
  9.                 return;
  10.             }
  11.             else
  12.             {
  13.                 if (result.UserPW == UserPW)
  14.                 {
  15.                     MessageBox.Show("登入成功");
  16.                 }
  17.                 else
  18.                 {
  19.                     MessageBox.Show("密碼錯誤");
  20.                     return;
  21.                 }
  22.             }
複製代碼

作者: 大乖乖v    時間: 2011-8-9 18:09

很不错,值得鼓励,。。。













vv瘦左旋肉碱vv瘦纯天然薰衣草强效瘦身配方薰衣草减肥




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2