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

一個最簡單的會員登陸代碼

編輯:關於ASP.NET

是用來新手入門的,高手們不要見笑呀!

string conn = "server=.;database=login;user id=sa;pwd=123";
    SqlConnection cn = new SqlConnection(conn);
    cn.Open();
    string strsql = "select user_name,user_pwd from admin where user_name='" + TextBox1.Text + "' or user_pwd='" + TextBox2.Text + "'";
    SqlCommand cmd = new SqlCommand(strsql, cn);
    SqlDataReader rd = cmd.ExecuteReader();
    if (rd.Read())
    {
      if (rd.GetValue(0).ToString() == TextBox1.Text)
      {
        if (rd.GetValue(1).ToString() == TextBox2.Text)
        {
          Response.Redirect("Default.aspx");
        }
        else
        {
          Response.Write("<script>alert('密碼錯誤!')</script>");
        }
      }
      else
      {
        Response.Write("<script>alert('用戶名錯誤!')</script>");
      }
    }
    else
    {
      Response.Write("<script>alert('用戶不存在!')</script>");
    }
  }

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