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

PDFViewer in Razor Pages

Updated on Dec 10, 2025

This article describes how to seamlessly integrate and configure the Telerik UI Loader for ASP.NET Core in Razor Pages applications.

Referencing Handler Methods 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 convention, the two files have the same name).

The cshtml.cs file, known as the PageModel, contains handler methods that respond to HTTP requests. These methods are prefixed with On followed by the HTTP verb (for example, OnGet, OnPost, OnPostRead, OnPostCreate).

Handler methods declared in a PageModel can be referenced from any Razor Page using one of the following URL patterns:

  • Using Url.Page()

    C#
    Url.Page("PageName", "HandlerName")
    // OR
    Url.Page("/FolderName/PageName", "HandlerName")

    For example, Url.Page("Index", "Read") references the OnPostRead or OnGetRead handler method in the Index.cshtml.cs file.

  • Using a query string

    C#
    Url("/PathToPage?handler=HandlerName")

    For example, Url("/Index?handler=Read") references the OnPostRead or OnGetRead handler method in the Index page.

For more information on Razor Pages architecture and concepts, refer to the official Microsoft documentation.

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 a Razor Pages application by using PDF.JS:

C#
    builder.Services.AddKendo(x => x.RenderAsModule = true);

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

DPL Processing

The following example demonstrates how to initialize the PDFViewer by using the Telerik Document Processing library in a Razor Pages application.

Razor
    @page
    @model PDFViewerDPLModel

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

    <h1>PDFViewerDPLProcessing</h1>

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

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

See Also