GridView/DataList无数据时显示提示内容

本文介绍了如何使用ASP.NET中的GridView和DataList控件进行数据填充的方法,并提供了处理空数据集时显示提示信息的具体实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

GridView操作:

private void fillgv()
        {
        string str_sql = "select sp_gl.sp_no,sp_gl.sp_mc,sp_gl.sp_gg,sp_gl.sp_dw,sp_gl.sp_jg1,sp_gl.sp_bzsl,sp_gl.sp_bzsl*sp_gl.sp_jg1 as as_xdj,collect.co_rq from sp_gl,collect where sp_gl.sp_no=collect.sp_no and collect.cu_id=+" + Session["UserId"].ToString();
        DataTable dt = con.ExcuteSelect(str_sql);
        this.GridView1.DataSource = dt;
        this.GridView1.DataBind();

        if (dt.Rows.Count == 0)
        {
            dt.Rows.Add(dt.NewRow());
            GridView1.DataSource = dt;
            GridView1.DataBind();
            int columnCount = GridView1.Rows[0].Cells.Count;
            GridView1.Rows[0].Cells.Clear();
            GridView1.Rows[0].Cells.Add(new TableCell());
            GridView1.Rows[0].Cells[0].ColumnSpan = columnCount;
            GridView1.Rows[0].Cells[0].Text = "无内容";
            GridView1.RowStyle.HorizontalAlign = System.Web.UI.WebControls.HorizontalAlign.Center;
        }

    }

DataList操作:

private void fill_dlProducts(string a)
     {
        string strSel = "select * from sp_gl ";
        SqlDataAdapter da = new SqlDataAdapter(strSel, con.con);
        dtTable = new DataTable();
        da.Fill(dtTable);
        this.dlProducts.DataSource = dtTable;
        this.dlProducts.DataBind();

        if (dtTable.Rows.Count == 0)
        {
            dtTable.Rows.Add(dtTable.NewRow());
            dlProducts.DataSource = dtTable;
            dlProducts.DataBind();
            Label l = new Label();
            l.Text = "对不起,没有您所查询的产品!";
            dlProducts.Items[0].Controls.Clear();
            dlProducts.Items[0].Controls.Add(l);
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值