试试下面的代码private void Button1_Click(object sender, System.EventArgs e)
{
//ExportToWord();
//**********************************将整个页面内容导出到Word中
Response.Clear(); 
Response.Buffer= true; 
Response.Charset="GB2312";    
Response.AppendHeader("Content-Disposition","attachment;filename=FileName.doc"); 
Response.ContentEncoding=System.Text.Encoding.GetEncoding("GB2312");//设置输出流为简体中文
Response.ContentType = "application/ms-word";//设置输出文件类型为word文件。
}