我想在我的页面上嵌入报告,而无需为报告启动单独的服务器,我可以这样做吗?
答案 0 :(得分:0)
将报告发布到您的Web服务器,并确保您具有有效的web.config文件。
您的报告应该可以访问。
我使用的Web.config文件是:
<?xml version="1.0"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
</system.webServer>
</configuration>
如果您通过“不启动单独的服务器”来表示您没有任何Web服务器,那么答案-这是不可能的。