程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net中Table生成Excel表格的方法

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

編輯:ASP.NET基礎

本文實例講述了asp.net中Table生成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程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved