├── ReportViewerForMvc.Example ├── Views │ ├── _ViewStart.cshtml │ ├── Examples │ │ ├── LocalReportExample.cshtml │ │ ├── ServerReportExample.cshtml │ │ └── AnonymousExample.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Home │ │ └── Index.cshtml │ └── Web.config ├── favicon.ico ├── Global.asax ├── Scripts │ ├── _references.js │ ├── respond.min.js │ └── respond.js ├── Reports │ ├── dsLocalReport.cs │ ├── dsLocalReport.xsc │ ├── dsLocalReport.xss │ ├── dsLocalReport.xsd │ └── LocalReportExample.rdlc ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── BundleConfig.cs ├── Controllers │ ├── HomeController.cs │ └── ExamplesController.cs ├── Global.asax.cs ├── Content │ └── Site.css ├── ReportViewerWebForm.aspx ├── packages.config ├── Web.Debug.config ├── Web.Release.config ├── Properties │ └── AssemblyInfo.cs ├── SqlServerTypes │ ├── Loader.cs │ └── readme.htm ├── Web.config ├── Project_Readme.html └── ReportViewerForMvc.Example.csproj ├── NuGet ├── lib │ └── net461 │ │ └── ReportViewerForMvc.dll ├── nuget_pack.bat ├── content │ ├── web.config.transform │ └── ReportViewerWebForm.aspx └── ReportViewerForMvc.nuspec ├── ReportViewerForMvc ├── Scripts │ ├── PostMessage.js │ └── ReceiveMessage.js ├── packages.config ├── ReportViewerWebForm.aspx.cs ├── WebResourceHelper.cs ├── ReportViewerWebForm.aspx ├── ReportDataSourceCollectionExtensions.cs ├── ReportViewerWebForm.aspx.designer.cs ├── CopyPropertiesHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── ReportExtensions.cs ├── IframeBuilder.cs ├── ReportViewerExtensions.cs ├── ReportViewerHelpers.cs ├── ReportViewerForMvc.cs ├── HtmlHelperExtensions.cs └── ReportViewerForMvc.csproj ├── ReportViewerForMvc.Tests ├── Reports │ └── ReportData.cs ├── TestViewDataContainer.cs ├── Properties │ ├── DataSources │ │ └── ReportViewerForMvc.Tests.Reports.ReportTable.datasource │ └── AssemblyInfo.cs ├── packages.config ├── app.config ├── ReportDataSourceCollectionExtensionsTests.cs ├── SqlServerTypes │ ├── Loader.cs │ └── readme.htm ├── ReportExtensionsTests.cs ├── ReportViewerExtensionsTests.cs ├── TestData.cs ├── HtmlHelperExtensionsTests.cs ├── ReportViewerForMvcTests.cs └── ReportViewerForMvc.Tests.csproj ├── LICENSE ├── README.md ├── ReportViewerForMvc.sln └── .gitignore /ReportViewerForMvc.Example/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chasoliveira/ReportViewerForMvc/HEAD/ReportViewerForMvc.Example/favicon.ico -------------------------------------------------------------------------------- /NuGet/lib/net461/ReportViewerForMvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chasoliveira/ReportViewerForMvc/HEAD/NuGet/lib/net461/ReportViewerForMvc.dll -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ReportViewerForMvc.Example.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chasoliveira/ReportViewerForMvc/HEAD/ReportViewerForMvc.Example/Scripts/_references.js -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/Reports/dsLocalReport.cs: -------------------------------------------------------------------------------- 1 | namespace ReportViewerForMvc.Example.Reports 2 | { 3 | 4 | 5 | public partial class dsLocalReport 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chasoliveira/ReportViewerForMvc/HEAD/ReportViewerForMvc.Example/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chasoliveira/ReportViewerForMvc/HEAD/ReportViewerForMvc.Example/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chasoliveira/ReportViewerForMvc/HEAD/ReportViewerForMvc.Example/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /NuGet/nuget_pack.bat: -------------------------------------------------------------------------------- 1 | ::nuget pack ..\ReportViewerForMvc\ReportViewerForMvc.csproj -Properties Configuration=Release 2 | robocopy ..\ReportViewerForMvc\bin\Release lib\net461 ReportViewerForMvc.dll /is 3 | 4 | nuget pack ReportViewerForMvc.nuspec -Exclude *.bat 5 | -------------------------------------------------------------------------------- /ReportViewerForMvc.Example/Views/Examples/LocalReportExample.cshtml: -------------------------------------------------------------------------------- 1 | @using ReportViewerForMvc; 2 | 3 | @{ 4 | ViewBag.Title = "LocalReportExample"; 5 | } 6 | 7 | 8 |