文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>gridview 导出成excel或word文件

gridview 导出成excel或word文件

时间:2011-04-13  来源:缘来

protected void Button1_Click(object sender, EventArgs e)

Export("application/ms-excel", "学生成绩报表.xls"); //ms-doc 导出成word

}

private void Export(string FileType, string FileName)
    {
        //以下三行可选,如果没有的话导出的只是当前页数据,没有其他页数据
       // GridView1.AllowPaging = false;
        //GridView1.AllowSorting = false;
       // gridviewdatabind(); //这里是你绑定gridview的方法
        Response.Charset = "UTF-8";
        Response.ContentEncoding = System.Text.Encoding.UTF8;
        Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(FileName, System.Text.Encoding.UTF8).ToString());
        Response.ContentType = FileType;
        this.EnableViewState = false;
        System.IO.StringWriter tw = new System.IO.StringWriter();
        HtmlTextWriter hw = new HtmlTextWriter(tw);
        GridView1.RenderControl(hw);
        Response.Write(tw.ToString());
        Response.End();
    }

//  如果没有下面方法会报错类型“GridView”的控件“GridView1”必须放在具有 runat=server 的窗体标记内    public override void VerifyRenderingInServerForm(Control control)  
{  
    // Confirms that an HtmlForm control is rendered for  
}
相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载