Tôi mới đến Visual Studio. Tôi hiện đang tạo một biểu mẫu Đăng nhập.
Tôi có mã này.
string connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
try
{
using (OdbcConnection connect = new OdbcConnection(connectionString))
{
connect.Open();
OdbcCommand cmd = new OdbcCommand("SELECT username, password FROM receptionist", connect);
OdbcDataReader reader = cmd.ExecuteReader();
if (username_login.Text == username && password_login.Text == password)
{
this.Hide();
MessageBox.Show("Invalid User", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
else
MessageBox.Show("Invalid User", "Login Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
connect.Close();
}
}
catch (OdbcException ex)
{
MessageBox.Show(ex.Message, "error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
Nhưng bất cứ khi nào tôi cố gắng nhập tên người dùng và mật khẩu, có một lỗi gọi là Cấu hình hệ thống không thể khởi tạo . Tôi chỉ tự hỏi đây là loại vấn đề gì và làm thế nào tôi có thể giải quyết vấn đề này?
Xin vui lòng giúp đỡ.