Overview of Validation and User Controls

Label Server Control

Label Server Control The Label server control is used to display text in the browser. As it is a server control, you can automatically change the text from your server-side code. <asp:Label> control, this control uses the Text attribute to assign the content of the control. Code for the Label Server Control: <asp:Label ID=”Label1″ runat=”server” Text=”Hello World” …

Label Server Control Read More »

Unobtrusive Validation in ASP.NET 4.5

Normally, validation is handled on the server-side by using a built-in control or writing a method to check the values on the form. On the client-side, JavaScript would be eliminated to the browser. So the jQuery validation plugin was updated to support unobtrusive validation. Unobtrusive validation helps to reduce the capturing on the user’s interaction …

Unobtrusive Validation in ASP.NET 4.5 Read More »

Scroll to Top