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();
posted on 2010-11-10 15:23  seamanhy  阅读(320)  评论(0编辑  收藏  举报