asp+sql导出报表的问题!重新掀起!
我做的导出数据不能超过900条,伤心啊!还有解吗?各位想想办法啊!急……
<%
Response.Buffer = True
'Response.ContentType = "application/vnd.ms-doc" '导出Word格式
Response.ContentType = "application/x-msdownload" '导出Excel格式
Response.AddHeader "content-disposition", "attachment;filename = myExcel.xls"
%>这是关键代码