how to display excel sheet in html page

后端 未结 11 1691
天涯浪人
天涯浪人 2020-12-03 21:09

I want to display EXCEL sheet embedded in IE with plain HTML. I have gone through other questions on stackoverflow but could not find any useful one.

Here is my html

11条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-03 21:51

    Maybe you might try the web to send the file with proper Content-Type header and with the header like this:

    Content-Disposition: inline; filename="xxx.xxx"
    

    Here is a discussion about these headers: How to force files to open in browser instead of download (pdf)?

    Or just search on google for content-disposition.

提交回复
热议问题