国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 淅川县| 永寿县| 枞阳县| 天等县| 抚顺县| 红原县| 英吉沙县| 大同县| 乌鲁木齐县| 高安市| 额尔古纳市| 广河县| 仁布县| 当涂县| 咸阳市| 肥西县| 临桂县| 大关县| 新巴尔虎右旗| 连云港市| 湛江市| 东莞市| 东乡族自治县| 东城区| 尉氏县| 上饶县| 汉沽区| 峨眉山市| 隆安县| 牟定县| 东宁县| 若羌县| 广饶县| 虎林市| 库车县| 南涧| 肇州县| 微博| 碌曲县| 泸州市| 海口市|