程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 用Visual Studio .NET 2003編寫的標准簡單的登陸例子(分別驗證用戶名與密碼)

用Visual Studio .NET 2003編寫的標准簡單的登陸例子(分別驗證用戶名與密碼)

編輯:.NET實例教程
1.用SQL建立在tempdb數據庫上建立:tUser表,表裡包含用戶名與密碼字段
2.代碼部分
using System.Data.SqlClIEnt;命名空間
private void Form2_Load(object sender, System.EventArgs e)
  {
   SqlConnection conn=new SqlConnection("server=.;database=tempdb;uid=sa");
   string sql="select * from tUser";
   SqlDataAdapter da=new SqlDataAdapter(sql,conn);
   da.MissingSchemaAction=MissingSchemaAction.AddWithKey;
      ds=new DataSet();
   da.Fill(ds);
  }
 
//登陸按鈕事件
private void button1_Click(object sender, System.EventArgs e)
  {
           
            DataRow dr=ds.Tables[0].Rows.Find(textName.Text.Trim());
   if(dr==null)
   {
    MessageBox.Show("該用戶不存在!");
   }
   else
   {
   if(dr["PassWord"].ToString().Trim()==textPwd.Text.ToString().Trim())
   {
    MessageBox.Show("成功登陸!");
   }
   else
   {
               MessageBox.Show("密碼不正確!");
   }
   
   }


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