先在.aspx页面中添加如下代码
<script type="text/javascript">
//指定页面区域内容导入Word
function AllAreaWord() {
var oWD = new ActiveXObject("Word.Application");
var oDC = oWD.Documents.Add("", 0, 1);
var oRange = oDC.Range(0, 1);
var sel = document.body.createTextRange();
sel.moveToElementText(userList);//userList是属性id的值,例如想导出<div id="id1"/>中的内容,只需将userList换id1
sel.select();
sel.execCommand("Copy");
oRange.Paste();
oWD.Application.Visible = true;