zoukankan      html  css  js  c++  java
  • 在Asp.net中将GridView打印为word或者Excel

    在Asp.net中将GridView打印为word或者Excel

    学到的新东东,GridView打印为word,呵呵

    1.打印按钮函数

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
     protected void Button_print_Click(object sender, EventArgs e)
        {
            System.Web.HttpContext HC = System.Web.HttpContext.Current;
            HC.Response.Clear();
            HC.Response.Charset = "GB2312";
            HC.Response.Buffer = true;
            HC.Response.ContentEncoding = System.Text.Encoding.UTF7;
            HC.Response.AddHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode("查询结果打印", System.Text.Encoding.UTF8) + ".doc");
            HC.Response.ContentType = "application/ms-word";//如果要打印为excel格式,则换为"application/excel"
            this.EnableViewState = false;
            System.IO.StringWriter sw = new System.IO.StringWriter();
            System.Web.UI.HtmlTextWriter htw = new System.Web.UI.HtmlTextWriter(sw);
            this.GV_result.RenderControl(htw);
            HC.Response.Write(sw.ToString());
            HC.Response.End();
        }//打印输出按钮
    



    2.必须再写这个函数

    1
    2
    3
      public override void VerifyRenderingInServerForm(System.Web.UI.Control control)
        {
        }
    



    3.在.aspx页面page里边加上

    1
      EnableEventValidation="false"
    



    上面这三步是必须的

  • 相关阅读:
    sql sever 数据字典语法
    端口使用情况
    koa中间件说明
    FLIP动画思想
    跨域下载文件显示文件名
    post方法打开新页面并提交参数
    常用快捷键
    cnpm与npm安装的包不一样
    chrome devTools变量不提示,断点点击去不掉问题
    未修改的模块失效排查方法
  • 原文地址:https://www.cnblogs.com/lan0725/p/1873900.html
Copyright © 2011-2022 走看看