摘要:
根据这两天的学习,学会了怎么样把数据绑定在DataGrid。 先介绍一种dataAdapter的方式:View Code 1 private void BindGrid() 2 { 3 SqlConnection cnn = new SqlConnection(); 4 cnn.ConnectionString = "DataBase=stufinfomation;uid=sa;password=111111;"; 5 cnn.Open(); 6 SqlCommand cmd = new SqlComman... 阅读全文