' 输出副本的二进制字节流
Response.ContentType = "application/ms-excel"
Response.AppendHeader("Content-Disposition", "attachment;filename=info.xls")
Response.BinaryWrite(File.ReadAllBytes("filePath"))
' 删除副本
File.Delete(filePath)