我下载的EXCEL文件变成aspx页面了。。
请问是怎么回事

解决方案 »

  1.   

    //以字符流的形式下载文件 
                    FileStream fs = new FileStream(filePath, FileMode.Open);
                    byte[] bytes = new byte[(int)fs.Length];
                    fs.Read(bytes, 0, bytes.Length);
                    fs.Close();
                    File.Delete(filePath);
                    Response.ContentType = "application/octet-stream";
                    //通知浏览器下载文件而不是打开 
                    Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
                    Response.BinaryWrite(bytes);
                    Response.Flush();
                    Response.End();
      

  2.   


    string path = Server.MapPath(FilePath);
    System.IO.FileInfo file = new System.IO.FileInfo(path);
    Response.Clear();
    Response.Charset = "GB2312";
    Response.ContentEncoding = System.Text.Encoding.UTF8;
    //   添加头信息,为"文件下载/另存为"对话框指定默认文件名   
    Response.AddHeader("Content-Disposition", "attachment;   filename=" + Server.UrlEncode(file.Name));
     //   添加头信息,指定文件大小,让浏览器能够显示下载进度   
    Response.AddHeader("Content-Length", file.Length.ToString());//   指定返回的是一个不能被客户端读取的流,必须被下载   
    //Response.ContentType = "application/xhtml+xml''";//   把文件流发送到客户端   
    Response.WriteFile(file.FullName);
    //   停止页面的执行   Response.End();