允许排序=false无效

本文关键字:false 无效 排序 许排序 | 更新日期: 2023-09-27 18:27:46

在我的网格视图中,我想将新记录插入到网格视图的最后一行。所以我将CCD_ 1设置为CCD_。但它不适用于我的网格视图。我的代码在这里

 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();
    }

原因是什么?它适用于我项目的另一个网格视图。请帮助

允许排序=false无效

单击.aspx页面中的网格视图并点击f4。将弹出属性窗口。检查第5行(允许排序)。如果它为真,则为假。有时,由于定时的原因,codeehind代码将无法工作。如果它已经为false,那么将"GridView2.AllowSorting=false;"放在数据源和数据绑定之间。

GridView2.DataSource = ds;
GridView2.AllowSorting = false;
GridView2.DataBind();

尝试这个

string select_string="SELECT student_id,student_name,student_nric,student_group FROM student_details WHERE student_group='"+groups[0].ToString().Trim()+"' ";