Response.Clear();
Response.Buffer = true;
Response.AppendHeader("Content-Disposition", "attachment;filename=CV-List"+DateTime.Now.ToString("-yyyy-MM-dd")+".xls");
Response.ContentType = "application/vnd.ms-excel";
this.EnableViewState = false;
Response.Write(sb.ToString());
Response.End();
转载于:https://www.cnblogs.com/seamanhy/archive/2010/11/10/1873803.html