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
- Download the project and update NuGet packages.
- Build and run the project.
- 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
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()
}
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);
}
}
}