杞人忧天上掉下个林妹妹

穿越旷野的妹妹啊,慢些走;请不要用你的沉默告诉我,你不回头!

导航

输出服务器端文件到客户端

     string MIME = "application/vnd.ms-excel";
     Response.Clear();
     Response.AppendHeader("content-disposition", "attachment; filename="+ HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
     //设置输出文件类型
     Response.ContentType = MIME;
     //把文件流发送到客户端
     Response.WriteFile(filePath);
     Response.Flush();
     Response.Close();
     Response.End();

posted on 2006-05-18 22:58  杞人  阅读(227)  评论(0编辑  收藏  举报