国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

datagrid指定行合并導(dǎo)出

2019-11-17 01:48:36
字體:
供稿:網(wǎng)友

datagrid指定行合并導(dǎo)出

導(dǎo)出代碼:

public void GridViewToExcel(GridView ctrl, string FileType, string FileName) { HttpContext.Current.Response.Charset = "GB2312"; HttpContext.Current.Response.ContentEncoding = Encoding.UTF8; HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, Encoding.UTF8).ToString());

HttpContext.Current.Response.ContentType = FileType;//image/JPEG;text/HTML;image/GIF;vnd.ms-excel/msWord ctrl.Page.EnableViewState = false; StringWriter tw = new StringWriter(); HtmlTextWriter hw = new HtmlTextWriter(tw); ctrl.AllowPaging = false; bind(); ctrl.RenderControl(hw); HttpContext.Current.Response.Write(tw.ToString()); HttpContext.Current.Response.End(); ctrl.AllowPaging = true; bind(); }

重寫方法,此方法必須需要:

public override void VerifyRenderingInServerForm(Control control) {

}

指定合并列:

PRotected void GridView1_DataBound(object sender, EventArgs e) { int[] arr = new int[] { 1,3,5 }; GroupRows(GridView1, arr, 2); GroupRows(GridView1, arr, 0); GroupRows(GridView1, arr, 1); }

//合并 public static void GroupRows(GridView GridView1, int[] cellIndex, int mostlyid) { int i = 0, rowSpanNum = 1; while (i < GridView1.Rows.Count - 1) { GridViewRow gvr = GridView1.Rows[i]; for (++i; i < GridView1.Rows.Count; i++) { GridViewRow gvrNext = GridView1.Rows[i]; if (gvr.Cells[cellIndex[mostlyid]].Text == gvrNext.Cells[cellIndex[mostlyid]].Text)// && gvr.Cells[cellIndex[mostlyid]].Text == gvrNext.Cells[cellIndex[mostlyid]].Text) { gvrNext.Cells[cellIndex[mostlyid]].Visible = false;//不然會把其他的擠走,造成行突出 rowSpanNum++; } else { gvr.Cells[cellIndex[mostlyid]].RowSpan = rowSpanNum; rowSpanNum = 1; break; } if (i == GridView1.Rows.Count - 1) { gvr.Cells[cellIndex[mostlyid]].RowSpan = rowSpanNum; } } } }


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 台中县| 永清县| 钟山县| 江华| 漾濞| 奇台县| 平塘县| 秦安县| 梓潼县| 理塘县| 扎鲁特旗| 巴青县| 余庆县| 江孜县| 介休市| 边坝县| 简阳市| 盈江县| 泾源县| 太白县| 建湖县| 海安县| 南皮县| 车致| 禹城市| 湛江市| 沈阳市| 黔西县| 台东县| 杭州市| 海口市| 黎城县| 德安县| 珠海市| 洛扎县| 驻马店市| 枣庄市| 龙游县| 九龙城区| 陇川县| 耿马|