国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 买车| 莫力| 祁东县| 泗水县| 巨鹿县| 余庆县| 烟台市| 高密市| 洪洞县| 调兵山市| 兴城市| 扎囊县| 松原市| 泉州市| 马山县| 彭州市| 那坡县| 鄄城县| 汪清县| 临漳县| 会泽县| 贵港市| 玛纳斯县| 南华县| 博兴县| 读书| 丹江口市| 阿瓦提县| 新干县| 微博| 新乡市| 霞浦县| 秭归县| 平谷区| 阳曲县| 宣城市| 静宁县| 西乌珠穆沁旗| 金门县| 长寿区| 哈尔滨市|