The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
UDUdhayaKumar Duraisamy Syncfusion Team June 18, 2023 08:56 AM UTC
Based on the information you have shared, we suspect that you are
attempting to use validation for the MaxLength character limit in the
TextBoxFor component. To achieve this, you can use the MaxLength
attribute. For further details, please refer to the following code snippet.
publicclassTextBoxValue
{
[Required(ErrorMessage = "Value
is required")]
[MaxLength(5,
ErrorMessage = "Maximum length is 5 characters")]