Calendar 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 Calendar for ASP.NET Core in Razor Pages applications.
This article describes how to configure the Calendar component in a Razor Pages scenario.
For the complete project, refer to the Calendar in Razor Pages example.
@inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf
@Html.AntiForgeryToken()
@(Html.Kendo().Calendar()
.Name("calendar")
)
inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf
@Html.AntiForgeryToken()
@addTagHelper *, Kendo.Mvc
<kendo-calendar name="calendar">
</kendo-calendar>
public void OnGet()
{
}