在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"



上面这三步是必须的

转载于:https://www.cnblogs.com/lan0725/archive/2008/12/11/1873900.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值