各位高手:想在网页中打开EXCEL文件我是在本地机上,要打开本地机上的EXCEL文件,与服务器端无关,只是在本机内操作要怎么做呀请高手帮帮忙

解决方案 »

  1.   

    Of course you can open the office files using the browser without the networking, but it's IE only, please make a try using the following way:Response.AppendHeader("Content-Disposition", "attachment;filename=excel.xls");
    Response.ContentType = "application/ms-excel";
      

  2.   

    You need to set the header and content type to let the browser know which format will be opened.
      

  3.   

    You can directly put the header and content type to the meta element, it's ok.
      

  4.   

    上网找关于DSOFramer.ocx插件就好了,也有现成的证书。
      

  5.   

    我只是想在网页中做个链接,当单击时可以打开本地的EXCEL文件