Example T1020316
Visible to All Users

Reporting for ASP.NET Core - Specify Parameter Values in a URL Query String

This example demonstrates how to submit parameter values in a URL query string and implement the viewer's action method to apply the values to a report.

How to Run the Example

  1. Download the project and update NuGet packages.
  2. Build and run the project.
  3. Navigate to a page that contains the document viewer and specify a parameter value in a URL query string.

Files to Review

Documentation

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

ReportingApp/Views/Home/Viewer.cshtml
Razor
@{ var viewerRender = Html.DevExpress().WebDocumentViewer("DocumentViewer") .Height("1000px") .Bind(Model); @viewerRender.RenderHtml() } @section Scripts { <link href="~/css/dx-reporting-skeleton-screen.css" rel="stylesheet" /> <link rel="stylesheet" href="~/css/viewer.part.bundle.css" /> <script src="~/js/reporting.thirdparty.bundle.js"></script> <script src="~/js/viewer.part.bundle.js"></script> @viewerRender.RenderScripts() }
ReportingApp/Controllers/HomeController.cs
C#
using Microsoft.AspNetCore.Mvc; using ReportingApp.PredefinedReports; namespace ReportingApp.Controllers { public class HomeController : Controller { public IActionResult Index() { return View(); } public IActionResult Error() { Models.ErrorModel model = new Models.ErrorModel(); return View(model); } public IActionResult Viewer(string? strParam) { var report = new XtraReport1(); report.Parameters["strParam"].Value = strParam; report.Parameters["strParam"].Visible = false; return View(report); } } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.