rm格式的文件,写入到数据库里,在取出来进,如果写入到流里后,用realone打开是,总是说要去下载一个控件,但又找不到
请问有没有什么办法

解决方案 »

  1.   

    System .Web .HttpContext .Current .Response.BinaryWrite((byte [])( dv[0]["filecontent"]));
      

  2.   

    string path = Server.MapPath(this.xlfile.Text+".xls"); 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/ms-excel";

    // 把文件流发送到客户端
    Response.WriteFile(file.FullName);
    // 停止页面的执行

    Response.End();
      

  3.   

    Response.ContentType = "application/octet-stream"
      

  4.   

    从库里读出来后是byte 类型 ,现在要用System .Web .HttpContext .Current .Response.BinaryWrite((byte [])( dv[0]["filecontent"]));
    写入到流里后,打不开,暂时写到硬盘里再去打开的,