Export excel by writing html code to the page, and export excel by html code

Source: Internet
Author: User

Export excel by writing html code to the page, and export excel by html code

1 // excel file name 2 string filename = "Attendance summary"; 3 StringBuilder ExcelHtml = new StringBuilder (); 4 ExcelHtml. append ("<table border = '1' style = 'vnd. ms-excel.numberformat: @ '> "); 5 // splicing <tr> <th> </tr> the first line Title 6 // loop splicing <tr> <td> </tr> The content of each row is 7 ExcelHtml. append ("</table>"); 8 DownloadExcelByTtml (ExcelHtml. toString (), filename ); 9 10 11 /// <summary> 12 // download Excel13 /// </summary> 14 /// <param name = "ExcelHtml"> </param> 15/ // <param name = "filename"> </param> 16 // <returns> </returns> 17 public void DownloadExcelByTtml (string ExcelHtml, string filename) 18 {19 Page p = HttpContext. current. handler as Page; 20 p. response. clear (); 21 p. response. buffer = true; 22 p. response. charset = "UTF-8"; 23 p. response. appendHeader ("Content-Disposition", "attachment; filename =" + HttpUtility. urlEncode (filename, Encoding. UTF8) + ". xls "); 24 p. response. contentEncoding = Encoding. UTF8; 25 p. response. contentType = "application/vnd. ms-excel "; 26 p. enableViewState = false; 27 p. response. write ("

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.