try
{
OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source= C:\Users\jay.desai\Documents\Visual Studio 2008\Projects\Jahoo Sign in form!\Jahoo Sign in form!\Registration_form.mdb");
con.Open();
OleDbCommand cmd = new OleDbCommand("select * from Login where Username='"+txtlognUsrnm.Text+"' and Password='"+txtlognpswrd+"'", con);
OleDbDataReader dr = cmd.ExecuteReader();
if(dr.Read() == true)
{
MessageBox.Show("Login Successful");
}
else
{
MessageBox.Show("Invalid Credentials, Please Re-Enter");
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
我已創建一個登錄表單,並在Microsoft Access一個表中包含用戶名和密碼fields.when我點擊登錄按鈕,它總是顯示其他消息,雖然用戶名和密碼是相同表。訪問數據庫的登錄表單
你有什麼問題嗎? – Raptor
也許實際上在你的查詢字符串中傳遞密碼? 'txtlognpswrd'應該是'txtlognpswrd.Text'。 **但是** - 請學習並使用參數化查詢來防止SQL注入攻擊。 – Tim