conn.Open();
            SqlCommand comm1 = new SqlCommand("select * from admin where Label = 1",conn);
SqlCommand comm2 = new SqlCommand("select * from admin where Label = 2",conn);
SqlCommand comm3 = new SqlCommand("select * from admin where Label = 3",conn);
SqlCommand comm4 = new SqlCommand("select * from admin where Label = 4",conn);
SqlCommand comm5 = new SqlCommand("select * from admin where Label = 5",conn);
SqlCommand comm6 = new SqlCommand("select * from admin where Label = 6",conn);
SqlDataReader ds1 = comm1.ExecuteReader();
DataGrid1.DataSource = ds1;
DataGrid1.DataBind();
ds1.Close();
SqlDataReader ds2 = comm2.ExecuteReader();
            DataGrid2.DataSource = ds2;
            DataGrid2.DataBind();
ds2.Close();
            SqlDataReader ds3 = comm3.ExecuteReader();
            DataGrid3.DataSource = ds3;
DataGrid3.DataBind();
ds3.Close();            
SqlDataReader ds4 = comm4.ExecuteReader();
    DataGrid4.DataSource = ds4;
DataGrid4.DataBind();
ds4.Close();
SqlDataReader ds5 = comm5.ExecuteReader();
DataGrid5.DataSource = ds5;
DataGrid5.DataBind();
ds5.Close();
SqlDataReader ds6 = comm6.ExecuteReader();
DataGrid6.DataSource = ds6;
DataGrid6.DataBind();
ds6.Close();
conn.Close();
这是Page_Load事件