匯出Excel或word文件
#region 匯出檔案方法
/// <summary>
/// 匯出檔案方法
/// </summary>
/// <param name="exportFileName">匯出檔案的名字(包括字尾名,word為: .doc,excel為: .xls)</param>
/// <param name="mime">MIME碼(Word為:"application/ms-word",Excel為:"application/ms-excel")</param>
/// <param name="control">匯出的控制元件</param>
private void ExportFile(string
exportFileName, string
mime, Control
control)
{
Response.Clear();
Response.Buffer = true;
Response.Charset = "GB2312";
Response.AppendHeader("Content-Disposition", "attachment;filename=" +
exportFileName);
//設定輸出流為簡體中文
Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312");
//設定輸出檔案型別。
Response.ContentType = mime;
this.EnableViewState = false;
System.Globalization.CultureInfo myCItrad = new System.Globalization.CultureInfo("ZH-CN", true);
System.IO.StringWriter oStringWriter = new System.IO.StringWriter(myCItrad);
System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter);
control.RenderControl(oHtmlTextWriter);
Response.Write(oStringWriter.ToString());
Response.End();
}
// 使用匯出方法,必須要重寫的方法,否則會報錯 :
//型別“xxx”的控制元件“xxx”必須放在具有 runat=server 的窗體標記內
public override void VerifyRenderingInServerForm(Control control)
{
// 空
}
#endregion
相關文章
- 騰訊文件怎樣匯出excel表格 騰訊文件如何匯出excelExcel
- NPOI匯出和匯入Excel,Word和PDFExcel
- 如何將excel表格匯入word並保持格式不變 如何把excel的表格弄到word文件Excel
- 金山文件怎麼匯出excel檔案 金山文件到處excel檔案的方法Excel
- 如何用Java語言優雅地匯出Word文件Java
- EasyOffice-.NetCore一行程式碼匯入匯出Excel,生成WordNetCore行程Excel
- 資料庫文件編寫,如何通過Navicat把表導成表格?資料庫快速匯出為excel表格資訊,excel匯出到word表格資料庫Excel
- 匯出excelExcel
- 如何將Word文件轉成Excel表格?Excel
- 通過窮舉法快速破解excel或word加密文件最高15位密碼Excel加密密碼
- Typora配置匯出word
- vue excel匯入匯出VueExcel
- POI匯入Excel中文API文件ExcelAPI
- Java匯出ExcelJavaExcel
- Vue匯出ExcelVueExcel
- PHP 匯出 ExcelPHPExcel
- PHP匯出EXCELPHPExcel
- 10分鐘做好 Bootstrap Blazor 的表格元件匯出 Excel/Word/Html/PdfbootBlazor元件ExcelHTML
- java匯出Excel定義匯出模板JavaExcel
- Excel模板匯出之動態匯出Excel
- Angular Excel 匯入與匯出AngularExcel
- NPOI建立並匯出word
- Excel匯出實列Excel
- js匯出Excel表格JSExcel
- vue 前端匯出 excelVue前端Excel
- poi的excel匯出Excel
- vue匯出Excel表格VueExcel
- Excel優雅匯出Excel
- vue + element + 匯入、匯出excel表格VueExcel
- kxcel, 方便匯入和匯出 ExcelExcel
- mindmaster匯出markdown文件AST
- Vue框架下實現匯入匯出Excel、匯出PDFVue框架Excel
- element-ui 匯出excelUIExcel
- springboot poi匯出excel表格Spring BootExcel
- Mvc 5中匯出ExcelMVCExcel
- excel匯出、mysql分頁ExcelMySql
- Go 使用反射匯出 ExcelGo反射Excel
- Laravel Excel3.0匯出LaravelExcel
- oracle 匯出excel 格式整改OracleExcel