Home  >  Article  >  Backend Development  >  C# exports html table to excel instance

C# exports html table to excel instance

高洛峰
高洛峰Original
2017-01-13 17:26:461921browse

public void ProcessRequest (HttpContext context) {

        string elxStr = "<table><tbody><tr><td>1</td><td>11</td></tr><tr><td>2</td><td>22</td></tr></tbody></table>";
        context.Response.Clear();
        context.Response.Buffer = true;
        context.Response.AppendHeader("Content-Disposition", "attachment;filename=" + DateTime.Now.ToString("yyyyMMdd") + ".xls");
        context.Response.ContentEncoding = System.Text.Encoding.UTF8;
        context.Response.ContentType = "application/vnd.ms-excel";
        context.Response.Write(elxStr);
        context.Response.End();
     }

     public bool IsReusable {
         get {
             return false;
         }
     }


For more C# related articles about exporting html table to excel instance, please pay attention to PHP Chinese website!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn