ASP.NET client side validation

ASP.NET client side validation

ASP.NET Web form controls and HTML Server Control can be made to execute client side script before posting the page back to the server. Here the author has taken an example of a button that, when clicked, calls a function Validate(), which is on the client side first, and then submits the page.

ASP.NET Web form control

Let us start with a button which is an ASP.NET Web form control type:
i.e <asp:button id="acceptButton" runat="server" Text="Submit" </asp:button>

In the Page_Load Event of this page write the following statement:
acceptButton.Attributes.Add("onclick", "return Validate()")

Here Validate() is a simple function written in JavaScript or VBScript. In this function all client side validations can be done. And when all the validation checks are met, then the function merely returns true to post the page back to the server. Returning false from the Validate() function does not post the ASP.NET page.

HTML Server Control

These controls are similar to the HTML control, However they have an attribute runat = "server", which makes them server controls.

<INPUT id="acceptButton" onclick="return validate();" type="button" value="Submit" name="myButton" runat="server" onserverclick="myButton_ServerClick">

Here we see that this control has two attributes: onClick, which calls

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

the client side function Validate, and onServerClick, which calls the server side function. Here again we have the same validation function, which returns a boolean. Returning true causes the page to be posted to the server and execute the myButton_ServerClick() on the server.


Source: DotNetExtreme.com

This was first published in January 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.