An unhandled exception of type

An unhandled exception of type 'System.Data.SqlClient.SqlException' occurred in System.Data.dll

Ai giúp em sửa lỗi này với.

   using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    namespace WindowsFormsApplication3
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }

            private void button1_Click(object sender, EventArgs e)
            {
                SqlConnection con = new SqlConnection(@"Data Source=(LocalDB)\v11.0;AttachDbFilename=C:\Users\zleey\Documents\Data.mdf;Integrated Security=True;Connect Timeout=30;");
                
                SqlDataAdapter sda = new SqlDataAdapter("Select Count(*) From Login where  Username='" + textBox1.Text + "' and Password='" + textBox2.Text + "'", con);
                DataTable dt = new DataTable();
                sda.Fill(dt);
                if(dt.Rows[0][0].ToString()=="1")
                {
                    this.Hide();
                    Main ss = new Main();
                    ss.Show();
                }
                else
                {
                    MessageBox.Show("Please Check U Username and Password");
                }
                
            }

            private void label3_Click(object sender, EventArgs e)
            {

            }

            private void button2_Click(object sender, EventArgs e)
            {
                this.Close();
            }
        }
    }

Lỗi là do bạn không biết dùng try - catch.

3 Likes

try- catch là gì e không biết. nhưng e bị lỗi ở đoạn “sda.Fill(dt)”; và không biết sửa lại sao cho nó chạy

Google: c# try catch.
Bạn nên biết nó!

3 Likes
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?