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

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

分頁Repeater導(dǎo)出數(shù)據(jù)到Excel

2019-11-10 18:35:26
字體:
供稿:網(wǎng)友

分頁Repeater導(dǎo)出數(shù)據(jù)到Excel

1.導(dǎo)出Repeater中的數(shù)據(jù)時,導(dǎo)出的數(shù)據(jù)必須是完整的數(shù)據(jù)塊,例如:完整的table。

2.如果導(dǎo)出的數(shù)字按科學(xué)計數(shù)法顯示則在那列加入樣式:style=”vnd.ms-excel.numberformat:@”即可。

3.Repeater導(dǎo)出到Excel的代碼(C#):

public static void ReportToExcel(System.Web.UI.Control ctl) { HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8; HttpContext.Current.Response.ContentType = "application/ms-excel"; HttpContext.Current.Response.Charset = "gb2312"; HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode("Hello.xls", System.Text.Encoding.UTF8).ToString()); StringWriter sw = new StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); ctl.RenderControl(htw); HttpContext.Current.Response.Write(sw.ToString()); HttpContext.Current.Response.End(); }

4.如果支持分頁,并且頁面不是回發(fā)的情況下,可以用如下方法調(diào)用:

string where = string.Format("{0} and PayState=1", whereSQL);//根據(jù)需要,重新拼寫where條件 DataTable dt = Function.PayDesigner.GetPayDesignerList(where, orderSQL, 1, recordCount); //recordCount為記錄的總條數(shù) Repeater1.DataSource = dt; Repeater1.DataBind(); ReportToExcel(Repeater1);
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 尉氏县| 黄平县| 招远市| 子洲县| 贺兰县| 晋州市| 杭州市| 慈利县| 芦溪县| 元谋县| 桂阳县| 黄大仙区| 宾阳县| 伊通| 二连浩特市| 泉州市| 苍溪县| 深水埗区| 德兴市| 徐水县| 浪卡子县| 高邑县| 托克逊县| 清水县| 禹城市| 延长县| 武隆县| 无锡市| 桑植县| 江安县| 怀柔区| 涪陵区| 林周县| 武乡县| 安图县| 明星| 舞阳县| 朝阳县| 清涧县| 连山| 红桥区|