服务器之家

服务器之家 > 正文

asp.net中Table生成Excel表格的方法

时间:2019-12-14 11:25     来源/作者:shichen2014

本文实例讲述了asp.netTable生成Excel表格的方法。分享给大家供大家参考。

具体实现方法如下:

 

复制代码代码如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="/Css/Balance.css" rel="stylesheet" />
    <title></title>
    <script runat="server">
        protected void writeXls(object sender, EventArgs e)
        {
            Response.Clear();
            Response.Buffer = true;
            Response.ContentType = "application/vnd.ms-excel.numberformat:@";
            this.EnableViewState = false;
            Response.Charset = "UTF-8";
            Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");//设置输出流为简体中文  
            Response.AppendHeader("Content-Disposition", "attachment;filename=" + Title + ".xls");
            Response.Write(printHid.Value);
            Response.End();
        }
    </script>
</head>
<body>
   <form id="form1" runat="server">
    <asp:HiddenField ID="printHid" runat="server" />
      <button onclick="getHtmltoValue()" >生成excel</button>
     <script type="text/javascript">
       function getHtmltoValue() {
          document.getElementById("<%=printHid.ClientID%>").value = document.getElementById("printDiv").innerHTML;
      }
   </script>

 

       <table >
            .......
        </table>
    </form>
</body>
<html>

 

希望本文所述对大家的asp.net程序设计有所帮助。

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
配置IIS网站web服务器的安全策略配置解决方案
配置IIS网站web服务器的安全策略配置解决方案 2019-05-23
Nginx服务器究竟是怎么执行PHP项目
Nginx服务器究竟是怎么执行PHP项目 2019-05-24
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
返回顶部