我通过以下方式将gridview导出到word文档:
Response.Clear()
Response.AddHeader("content-disposition", "attachment;filename=Questionnaires.doc")
Response.ContentType = "application/ms-word"
Dim sw As New System.IO.StringWriter()
Dim hw As New HtmlTextWriter(sw)
gridview1.RenderControl(hw)
Response.Write(sw.ToString())
Response.End()
但是,由于微软以不同的方式呈现HTML,并且正在显示边框,因为它将其作为表格读取..即使在摆脱gridview边框和/或甚至将它们变为白色(值得一试)时,它们仍会显示
非常感谢任何帮助