GridView实用代码

----自定义表头

----没有数据的时候显示表头

    protected void Button1_Click(object sender, EventArgs e)
    {
        DataTable testTable = new DataTable();
        if (testTable.Rows.Count == 0)
        {
            DataColumn test1Column = new DataColumn("name", System.Type.GetType("System.String"));
            DataColumn test2Column = new DataColumn("face", System.Type.GetType("System.String"));
            testTable.Columns.Add(test1Column);
            testTable.Columns.Add(test2Column);

            DataRow testRow = testTable.NewRow();
            testTable.Rows.Add(testRow);

            this.GridViewTest.DataSource = testTable;
            this.GridViewTest.DataBind();

            this.GridViewTest.Rows[0].Cells.Clear();
            this.GridViewTest.Rows[0].Cells.Add(new TableCell());
            this.GridViewTest.Rows[0].Cells[0].ColumnSpan = testTable.Columns.Count;
            this.GridViewTest.Rows[0].Cells[0].Text = "No Record";


            this.GridViewTest.HeaderRow.Cells.Clear();
            this.GridViewTest.HeaderRow.Cells.Add(new TableCell());
            this.GridViewTest.HeaderRow.Cells[0].Text = "</td><td colspan='2'>Face</td></tr><tr><td>Name</td><td>Face1</td><td>Face2";

            this.GridViewTest.Rows[0].Cells[0].Style.Add("text-align", "center");

        }
    }
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { getData(); } } //得到数据 public void getData() { this.GridView1.DataSource = BLL.mesManager.getGridData(); this.GridView1.DataBind(); } // 绑定之后发生 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { LinkButton lbtn = (LinkButton)e.Row.FindControl("LinkButton2"); e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699ff'"); e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor"); string aa = e.Row.Cells[3].Text.ToString(); lbtn.Attributes.Add("OnClick", "return confirm('您确认要删除吗?')"); } } //发生时间时激发 protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "del") { int id = Convert.ToInt32(e.CommandArgument); int resultNum = BLL.mesManager.del(id); if (resultNum > 0) { Response.Write("<script>alert('删除成功');</script>"); getData(); } else { Response.Write("<script>alert('删除失败');</script>"); } } else if (e.CommandName == "upd") { int id = Convert.ToInt32(e.CommandArgument); Response.Redirect("Update.aspx?id=" + id); } } protected void GridView1_SelectedIndexChanging(object sender, GridViewSelectEventArgs e) { } //pageindexchangeing protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { this.GridView1.PageIndex = e.NewPageIndex; getData(); } //全部删除 protected void Button1_Click(object sender, EventArgs e) { for (int i = 0; i <= GridView1.Rows.Count - 1; i++) { CheckBox cbox = (CheckBox)GridView1.Rows[i].FindControl("CheckBox1"); if (cbox.Checked == true) { int id=Convert.ToInt32( this.GridView1.Rows[i].Cells[1].Text); BLL.mesManager.del(id); } } getData(); } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值