最近负责开发公司内部使用的人事信息化系统时,有一个需求是这样的,需要在页面中可以用户每次导出Excel时自定义需要导出哪些列,经过半天的琢磨和倒腾,总算完成了这个需求。写篇blog记录一下小菜鸡的成长历程。哈哈哈。
需求见截图所示:
tbg:数据源使用DataTable、且GridView中用于绑定数据的BoundFiled列中使用的DataField全部是与CheckBox中的ID一一对应,这样方便后面循环这些控件时进行操作。
DataTable dt = employeesServices.GetEmployeesDataTable(); Dictionary<string, bool> ckbInfoList = new Dictionary<string, bool>(); foreach (var control in Page.Controls) { if (control.GetType().ToString() == "System.Web.UI.HtmlControls.HtmlForm") { HtmlForm form = (HtmlForm)control; foreach (var item in form.Controls) { if (item is CheckBox) { CheckBox ckb = (CheckBox)item; if (!ckb.Checked) { ckbInfoList.Add(ckb.ID, false); } else { ckbInfoList.Add(ckb.ID,true); } } } } } //遍历GridView列,根据Dictionary提供的内容来决定是否隐藏。 foreach (var control in Page.Controls) { if (control.GetType().ToString() == "System.Web.UI.HtmlControls.HtmlForm") { HtmlForm form = (HtmlForm)control; foreach (var item in form.Controls) { if (item.GetType().ToString() == "System.Web.UI.WebControls.GridView") { GridView gridView = (GridView)item; foreach (BoundField col in gridView.Columns) { foreach (var keyValue in ckbInfoList) { if (keyValue.Key == col.DataField) { col.Visible = Convert.ToBoolean(keyValue.Value); } } } } } } } gv.DataSource = dt; gv.DataBind();