本文共 1853 字,大约阅读时间需要 6 分钟。
protected void Button1_Click(object sender, EventArgs e) { string ConnectionString = "Data Source=localhost Integrated Security=SSPI;Database=student;connect Timeout=30;Pooling=true;";//使用windows登陆 SqlConnection conn = new SqlConnection(ConnectionString);//创建连接对象conn SqlDataAdapter da=new SqlDataAdapter("select * from student-info",conn);//创建一个数据适配器对象da,用于读取student中的数据表student-info; DataSet ds = new DataSet();//创建数据集ds; conn.Open();//打开连接 da.Fill(ds);//将检索中的数据填充到ds数据集中 conn.Close();//关闭连接 this.ListBox1.DataSource = ds;//设置控件listbox1的数据源 this.ListBox1.DataTextField = "stud_name";//设置控件listbox要显示的文本 this.ListBox1.DataBind();//通过databind方法将数据绑定到控件 }
protected void Button2_Click(object sender, EventArgs e) { string ConnectionString = "Data Source=localhost Integrated Security=SSPI;Database=student;connect Timeout=30;Pooling=true;";//使用windows登陆 SqlConnection conn = new SqlConnection(ConnectionString);//创建连接对象conn SqlCommand comm = new SqlCommand("select * from student-info", conn);//创建通用命令器对象comm,用于读取student中的数据表student-info; conn.Open();//打开连接 SqlDataReader dr = comm.ExecuteReader();//通过实例化创建dr数据阅读器; this.ListBox2.DataSource = dr;//设置控件listbox1的数据源 this.ListBox2.DataTextField = "stud_name";//设置控件listbox要显示的文本 this.ListBox2.DataBind();//通过databind方法将数据绑定到控件 conn.Close(); }