NumericTextBox in Razor Pages
This article describes how to seamlessly integrate and configure the Telerik UI NumericTextBox 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 theOnPostReadorOnGetReadhandler method in theIndex.cshtml.csfile. -
Using a query string
C#Url("/PathToPage?handler=HandlerName")For example,
Url("/Index?handler=Read")references theOnPostReadorOnGetReadhandler method in theIndexpage.
For more information on Razor Pages architecture and concepts, refer to the official Microsoft documentation.
Binding to a PageModel Property
To bind the NumericTextBox to a property from the PageModel, follow the next steps:
-
Declare the
PageModelat the top of theRazorPage:Razor@page @model NumericTextBoxBindingModel -
Declare the component either in a form or as a stand-alone component:
Razor<form method="post"> <label for="Price">Price:</label> @(Html.Kendo().NumericTextBoxFor(c=>c.Price) .Step(1) .Min(0) .Decimals(0) ) <br /> <input type="submit" name="name" value="Submit Form" /> </form> -
Bind the property values in the backend:
C#public class NumericTextBoxBindingModel : PageModel { [BindProperty] public int Price { get; set; } public void OnGet() { Price = 20; // Assign value to the "Price" property, if needed. } public void OnPost() { //omitted for clarity } }
For the complete project, refer to the NumericTextBox in Razor Pages example.