记录一次asp.net 中 后台GridView 取值,绑定,转换,展示问题

本文记录了在ASP.NET中使用GridView控件进行数据绑定时遇到的问题及解决方案。在后台代码中,详细展示了如何进行数据绑定、隐藏列以及在数据展示前进行格式化。特别提醒,在操作GridView的RowDataBound事件时,必须确保后台数据列与前台 BoundField 的 DataField 属性一致,否则可能取到错误的列值。
摘要由CSDN通过智能技术生成

在aspx 页面内,GridView的RowDataBound绑定问题:

在aspx页面中,利用GridView控件实行数据绑定

后台代码示例:

  protected void Page_Load(object sender, EventArgs e)
    {
        connString = ConnectionString.ReturnConnString();
        BindGridView();
    }
    // 绑定GridView
    private void BindGridView()
    {
        DataTable countdt = OracleAccess.ExecuteDataSet(connString, CommandType.Text, countStr, null).Tables[0];
        DataTable dt = OracleAccess.ExecuteDataSet(connString, CommandType.Text, strSQL, null).Tables[0];
        thisPage.Text = nowPage.ToString();
        if (dt.Rows.Count > 0)
        {
            //获取总数
            int allcount = int.Parse(countdt.Rows[0]["ALLCOUNT"].ToString());
            //分页
            double pas = (double)allcount / (double)pageCount;
            allPages = (int)Math.Ceiling(pas);
            this.allPage.Text = allPages.ToString();
            this.pageNum.Text = pageCount.ToString();
            thisPageNum.Text = dt.Rows.Count.ToString();
            this.JFGL_DATA.DataSource = dt;
            this.JFGL_DATA.DataBind();
        }
        else
        {
            //数据为空,构造结构
            BindNullGV();
        }
    }
    // 初始化GridView
    private void BindNullGV()
    {
        DataTable dt = MakeNullTable();
        if (dt.Rows.Count == 0)
        {
            dt.Rows.Add(dt.NewRow());
        }
        JFGL_DATA.DataSource = dt;
        JFGL_DATA.DataBind();
    }

    // 构造临时表
    private DataTable MakeNullTable()
    {
        DataTable dt = new DataTable("NullTable");
        DataColumn column0 = new DataColumn("xx");
        column0.DataType = System.Type.GetType("System.String");
        DataColumn column1 = new DataColumn("ID");
        column1.DataType = System.Type.GetType("System.St
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值