网页内容转换成word
在显示页面我通过重定向到打印页面:Server.Transfer("PrintPage.aspx");然后在打印页面中通过ExpertControl(this, DocumentType.Word);方法导出到WORD: 
public void ExpertControl(System.Web.UI.Control source, DocumentType type) 
//设置Http的头信息,编码格式 
if (type == DocumentType.Excel) 
//Excel 
Response.AppendHeader("Content-Disposition","attachment;filename="+lblProjectName.Text +".xls"); 
Response.ContentType = "application/ms-excel"; 
else if (type == DocumentType.Word) 
//Word 
if (this.lblPrjBianHao.Text=="") 
Response.AppendHeader("Content-Disposition","attachment;filename="+this.lblProjectName.Text+".doc"); 
else 
Response.AppendHeader("Content-Disposition","attachment;filename="+this.lblPrjBianHao.Text+"."+this.lblProjectName.Text+".doc"); 
Response.ContentType = "application/ms-word"; 
Response.Charset = "utf-8"; 
Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); 
//关闭控件的视图状态 
source.Page.EnableViewState =false; 
//初始化HtmlWriter 
System.IO.StringWriter writer = new System.IO.StringWriter() ; 
System.Web.UI.HtmlTextWriter htmlWriter = new System.Web.UI.HtmlTextWriter(writer); 
source.RenderControl(htmlWriter); 
//输出 
Response.Write(writer.ToString()); 
Response.End(); 
c# 将网页内容转换成word或excel文档2009/08/12 16:33最近研究了一下网页生成Word的方法,结果看到好多网友出现了关于使用c#实现网页内容转换成word或excel时时常出现乱码的问题,现将如何转换做个详细的介绍。
1.转换方法:
一般用HTTP的Header,在header里设置几个关键字让IE知道这是什么类型,从而正确打开。
2.C#源码:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
未成年男生变帅小技巧
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace word
{
/**//// <summary>
/// htm2doc 的摘要说明。
/
// </summary>
public class htm2doc : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Button Button1;
private void Page_Load(object sender, System.EventArgs e)
{       
word打开是乱码// 在此处放置用户代码以初始化页面
}
public void ExpertControl(System.Web.UI.Control source, DocumentType type)
{
//设置Http的头信息,编码格式
if (type == DocumentType.Excel)
{
//Excel
Response.AppendHeader("Content-Disposition","attachment;filename=result.xls");
Response.ContentType = "application/ms-excel";
}
else if (type == DocumentType.Word)
虚空恐惧出装
{
//W
ord
Response.AppendHeader("Content-Disposition","attachment;filename=result.doc");
Response.ContentType = "application/ms-word";
}
Response.Charset = "utf-8"; 
美术考生Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
//关闭控件的视图状态
source.Page.EnableViewState =false; 
//初始化HtmlWriter
System.IO.StringWriter writer = new System.IO.StringWriter() ;
System.Web.UI.HtmlTextWriter htmlWriter = new System.Web.UI.HtmlTextWriter(writer);
source.RenderControl(htmlWriter);
//输出
Response.Write(writer.ToString());
Response.End();
}
大学生学习总结范文//文档类型枚举
public enum DocumentType
{
Word,
Excel
}
Web 窗体设计器生成的代码#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/**//// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{   
教师节贺卡制作大全this.Button1.Click += new System.EventHandler(this.Button1_Click);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
//在web窗体中添加一个按钮使用该方法
private void Button1_Click(object sender, System.EventArgs e)
{
ExpertControl(this, DocumentType.Word);
}
}
}3.注意点:
在上面的代码中关键的地方就是以下两行代码:
Response.Charset = "utf-8"; 
Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");        第一行代码设定浏览器所使用的编码为utf-8,第二行代码设定的是word和excel的编码,因为word和excel的编码一般使用的是gb2312编码,不一定和浏览器(一般默认utf-8)的一致,这也是许多网友问题所在!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。