Sharepoint 2010 Sandboxed解决方案文件托管 - 显示下载结果

时间:2013-02-28 14:43:14

标签: javascript jquery sharepoint-2010 custom-action

我将一些文件放在模块中,用于Sharepoint 2010沙盒解决方案。 我想要显示一个html文件。为此,我在任务栏中添加了一个自定义操作按钮。

我正在执行一些javascript:

var child = window.open();
child.location = '{SiteUrl}/TaskBoardContent/LanesDashboard.html?SiteUrl={SiteUrl}&ListUrl={ListUrlDir}&isDlg=true';
child.focus();

很遗憾,会打开一个新选项卡,但IE9会从下载给定文件开始。我希望SP发送服务器端头上的问题。有什么想法?

1 个答案:

答案 0 :(得分:2)

您应该能够在Web应用程序范围内进行配置。我认为没有任何方法可以仅针对单个文件/站点覆盖此行为。或者,您可以尝试将没有任何代码的简单aspx页面添加到模块中。

点击此链接:

http://www.sharepoint-insight.com/2012/03/25/solution-for-viewing-html-files-in-browser-from-sharepoint-document-library/