2

私のグリッド ビューでは、グリッド ビューの最後の行に新しいレコードを挿入したいと考えています。というわけでセットGridview2.Allowsortingですfalse。しかし、それは私のグリッド ビューでは機能しません。私のコードはここにあります

 public void gridview2_selectgroup()
{
    if (Session["selectedgroupes"] != null)
    {
        ArrayList groups = new ArrayList();
        ArrayList student_id_list = new ArrayList();

        groups = (ArrayList)Session["selectedgroupes"];
        student_id_list=(ArrayList)Session["STUDENT_ID"];

        string select_string="SELECT student_name,student_id,student_nric,student_group FROM student_details WHERE student_group='"+groups[0].ToString().Trim()+"' ";
        for(int i=1;i<groups.Count;i++)
        {
            select_string+= " or student_group='"+groups[i].ToString().Trim()+"'";    
        }

        if(Session["STUDENT_ID"]!=null)
        {

        for(int i=0;i<student_id_list.Count;i++)
        {
            select_string+= " or student_id='"+student_id_list[i].ToString().Trim()+"'";    

        }
        }
        SqlConnection con = obj.getcon();
        con.Open();
        DataSet ds = new DataSet();

        SqlDataAdapter adapter = new SqlDataAdapter(select_string, con);
        adapter.Fill(ds);
        GridView2.DataSource = ds;
        GridView2.AllowSorting = false;
        GridView2.DataBind();
        con.Close();
    }

理由は何でしょう?私のプロジェクトの別のグリッド ビューで動作します。助けてください

4

2 に答える 2