Asp.net mvc StimulSoft报表查看器在IP中不工作,端口8818有效

Asp.net mvc StimulSoft报表查看器在IP中不工作,端口8818有效,asp.net-mvc,stimulsoft,Asp.net Mvc,Stimulsoft,我在MVC Web应用程序中使用StimulSoft版本:2015.2 在我看来,我使用了以下代码: @Html.Stimulsoft().RenderMvcViewerScripts(); <div> @Html.Stimulsoft().StiMvcViewerFx(options: new StiMvcViewerFxOptions { Theme = StiThemeFx.Office2013, Actions =

我在MVC Web应用程序中使用StimulSoft版本:2015.2 在我看来,我使用了以下代码:

@Html.Stimulsoft().RenderMvcViewerScripts();
<div>
    @Html.Stimulsoft().StiMvcViewerFx(options: new StiMvcViewerFxOptions
    {
        Theme = StiThemeFx.Office2013,
        Actions =
        {
            GetReportSnapshot = "GetReportSnapshotForPeriodic",

            // ViewerEvent = "ViewerEvent",
            //Interaction = "Interaction",
            //DesignReport = "GetReportTemplate"
        },
        Appearance =
        {

        },
        Toolbar =
        {

            ShowParametersButton = true
        }
    })
</div>
事实上,在端口为8818或任何其他端口的服务器上找不到GetReportSnapshot=“GetReportSnapshotForPeriodic”
如何重定向到具有相同ip和端口的Getreportsnapshot

我应该在哪个文件中插入此代码

如果更改服务器,则应使用UserRelativeUrls选项

@Html.Stimulsoft().StiMvcViewerFx(options: new StiMvcViewerFxOptions
{
    Server =
    {
         UseRelativeUrls = true
    }
@Html.Stimulsoft().StiMvcViewerFx(options: new StiMvcViewerFxOptions
{
    Server =
    {
         UseRelativeUrls = true
    }