文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>在IE中打开Excel和Word(2003格式测试通过)

在IE中打开Excel和Word(2003格式测试通过)

时间:2011-02-14  来源:

            Response.ClearContent();

            Response.ClearHeaders();

            Response.ContentType = "Application/msword";

            string strFilePath = "";

            strFilePath = Server.MapPath("高手帮你学习LINQ.doc");  //Word路径

            FileStream fs = new FileStream(strFilePath, FileMode.OpenOrCreate, FileAccess.Read);

            Response.WriteFile(strFilePath, 0, fs.Length);

            fs.Close();

   

            //在浏览其中打开Excel文件

            Response.ClearContent();

            Response.ClearHeaders();

            Response.ContentType = "application/vnd.ms-excel";

            Response.WriteFile(Server.MapPath("Book1.xls")); //Excel路径

            Response.Flush();

            Response.Close();

相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载