ASP生产excel文件
Response.AddHeader "Content-Disposition", "attachment;filename=testexcel.xls"Response.ContentType = "application/vnd.ms-excel"
Response.write "<table width=""100%"" border=""1"">"
Response.write "<tr>"
Response.write "<th width=""40%""><b>编号</b></th>"
Response.write "<th width=""30%""><b>用户名</b></th>"
Response.write "<th width=""30%""><b>密码</b></th>"
Response.write "</tr>"
Response.write "<tr>"
Response.write "<td width=""40%"">1</td>"
Response.write "<td width=""30%"">徐飞</td>"
Response.write "<td width=""30%"">123456</td>"
Response.write "</tr>"
Response.write "</table>"
页:
[1]