New to Telerik UI for ASP.NET CoreStart a free 30-day trial

PDFViewer in Razor Pages

Razor Pages is an alternative to the MVC pattern that makes page-focused coding easier and more productive. This approach consists of a cshtml file and a cshtml.cs file (by design, the two files have the same name).

You can seamlessly integrate the Telerik UI PDFViewer for ASP.NET Core in Razor Pages applications.

This article describes how to configure the PDFViewer component in a Razor Pages scenario.

For the complete project, refer to the PDFViewer in Razor Pages example.

PDFjs Processing

Starting with version 2024 R4, the PDFViewer requires PDF.js version 4+. For more information, refer to the PDF.js processing documentation.

The following example demonstrates how to initialize the PDFViewer in RazorPage project by using PDF.JS:

Program.cs
    builder.Services.AddKendo(x => x.RenderAsModule = true);

DPL Processing

The following example demonstrates how to initialize the PDFViewer by using the Telerik Document Processing library:

csthml
    @page
    @model Telerik.Examples.RazorPages.Pages.PDFViewer.PDFViewerDPLModel

    @inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf
    @Html.AntiForgeryToken()

    <h1>PDFViewerDPLProcessing</h1>

    @(Html.Kendo().PDFViewer()
            .Name("pdfviewer")
            .DplProcessing(dpl =>
            {
                dpl.Read(r=>r.Url("/PDFViewer/PDFViewerDPL?handler=Read"));
            })
    )

See Also

In this article
PDFjs ProcessingDPL ProcessingSee Also
Not finding the help you need?
Contact Support