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

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

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

2019-11-09 20:50:04
字體:
供稿:網(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ā)表
主站蜘蛛池模板: 西藏| 丰镇市| 东莞市| 盖州市| 聂拉木县| 沐川县| 梨树县| 石景山区| 钦州市| 镇远县| 恭城| 简阳市| 盘锦市| 团风县| 手游| 驻马店市| 马关县| 灵川县| 讷河市| 塘沽区| 丹江口市| 凤阳县| 镇巴县| 佳木斯市| 尉犁县| 奈曼旗| 南阳市| 谢通门县| 伊金霍洛旗| 乐亭县| 益阳市| 罗田县| 南华县| 扎囊县| 益阳市| 应用必备| 天门市| 宁明县| 大同市| 晋江市| 聂拉木县|