I am trying to embed an SSRS report inside a kendo tabstrip in an MVC 5 application. The report shows up but, it does not show any data after submitting the parameters. Here is my code:
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Animation(animation =>
animation.Open(effect =>
effect.Fade(FadeDirection.In)))
.Items(tabstrip =>
{
tabstrip.Add().Text("Report Data")
.Selected(true)
.Content(@Html.Partial("HomeIntegrityReport").ToHtmlString());
tabstrip.Add().Text("Graphical Data")
.Content(@<text>
<div class="weather">
</div>
</text>);
})
)
Here is the Home Intergrity Report code:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HomeIntegrityReport.aspx.cs" Inherits="NFO.Ontrac.Areas.PerformanceReports.Views.PeformanceReportsSSRS.HomeIntegrityReport" EnableEventValidation="false"%>
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
</head>
<body>
<form id="Form1" runat="server" >
<asp:ScriptManager runat="server"></asp:ScriptManager>
<div>
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Cambria"
Font-Size="8pt" Height="700px" ProcessingMode="Remote" Width="1160px"
ShowPageNavigationControls="True" AsyncRendering="false">
<ServerReport ReportPath="/Ontrac/CPE HHC Summary"
ReportServerUrl="reportServer/ReportServer/" />
</rsweb:ReportViewer>
</div>
</form>
</body>
</html>
Please let me know if additional information is needed.
Thanks
Ravali