如何用ajax导出excel-CSDN论坛
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用ajax导出excel-CSDN论坛相关的知识,希望对你有一定的参考价值。
参考技术A function getExcel()var tabhtml = $("#tb_Class").html();
$.post("../Ajax/GetExcel", tab: encodeURIComponent(tabHtml) );
Controler中:
public void GetExcel()
string sHtml = Server.UrlDecode(Request.Form["tab"]);
ExportToExcel("application/ms-excel", "XXXXX表.xls", sHtml.ToString());
public void ExportToExcel(string FileType, string FileName, string ExcelContent)
Response.Charset = "UTF-8";
Response.ContentEncoding = System.Text.Encoding.UTF8;
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8).ToString());
Response.ContentType = FileType;
StringWriter tw = new StringWriter();
Response.Output.Write(ExcelContent.ToString());
Response.Flush();
Response.End();
临摹好作品,如何用Sketch绘制精美的锤子论坛图标
编者按:好久没出Sketch教程了,今天跟着@老罗弟弟_罗方可来一发图标临摹,原图标是锤子科技的UI高手方迟设计的,效果惊艳。刚买Sketch的同学,内文附有新手系列教程,帮你从零开始掌握Sketch。
锤子科技论坛ICON:
精细的作品,学习完成教程戳阅读原文移步官网
⬇️⬇️⬇️
以上是关于如何用ajax导出excel-CSDN论坛的主要内容,如果未能解决你的问题,请参考以下文章