Tag: textbox
How to allow only numbers in a textbox in C# Windows Application ?
Want to allow the user to enter only numbers or integer values in a textbox in a C# Winforms Application ? . Below is a sample code snippet that demonstrates how to do it . How to allow only numbers in a textbox in C# Windows Application ? Assume that the text box name is “actxt” , we can map the Key Press event of…
How to define MaxLength property for a textbox in ASP.NET MVC Razor View?
Below is a sample code snippet which demonstrates how to define MaxLength property for a textbox in ASP.NET MVC Razor View.