FineUI 官方论坛

标题: Grid1.DataBind()提示 [打印本页]

作者: qcc    时间: 2016-8-12 17:34
标题: Grid1.DataBind()提示
        private void BindGrid()
        {
            try
            {
                DataSet ds = new DataSet();
                //获取搜索框中的内容
                string searchText = ttbSearchMessage.Text.Trim();
                string strWhere = "";
                if (!String.IsNullOrEmpty(searchText))
                {
                    strWhere = DropDownList1.SelectedValue + " = '" + searchText + "'";
                }
                //获取满足查询条件的总记录数,并赋值给grid
                ds = m_blltbl_HostDetailInfo.GetList(strWhere);
                Grid1.RecordCount = ds.Tables[0].Rows.Count;
                //获取满足查询条件的数据记录,通过数据库分页的方式获取
                ds = m_blltbl_HostDetailInfo.GetList(Grid1.PageSize, Grid1.PageIndex + 1, strWhere);
                //绑定到grid
                DataTable table=ds.Tables[0];
                if (table != null )
                {
                    Grid1.DataSource = table;
                    Grid1.DataBind();
                }
            }
            catch(Exception err)
            {
                Alert.Show(err.ToString());
            }
        }

没加单元格编辑是正常的,当我加上官网的源码示例,就出现这问题,希望大神能指导一下,谢谢!

出现如下错误:

未将对象引用设置到对象的实例。              
说明: 执行当前 Web 请求期间,出现未经处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。            

异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。

源错误:


执行当前 Web 请求期间生成了未经处理的异常。可以使用下面的异常堆栈跟踪信息确定有关异常原因和发生位置的信息。





欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4