日期:2014-05-18  浏览次数:20783 次

(急,在线等)请问网页中如何直接打开excel?解决马上结贴
如题:网页中如何直接打开excel文件。
谢谢

------解决方案--------------------
直接写一个事件

指定到那个EXCEL就可以
------解决方案--------------------
主要是红色的三行。 word,pdf格式类似

Dim fleInfo = New System.IO.FileInfo(“文件地址”+ "扩展名")
Response.Clear()
Response.Charset = "Shift_JIS"
Response.AddHeader("Content-Disposition", "inline; filename="test.xls")
'------------------------------------------inline(在线打开),attachment(下载)
Response.AddHeader("Content-Length", fleInfo.Length.ToString())
Response.ContentType = "application/vnd.ms-excel"
Response.WriteFile(fleInfo.FullName)
Response.End