December 2003
Intermediate to advanced
504 pages
10h 42m
English
After the basic data-entry form has been created, a key requirement for completing the Web application is to provide data-validation logic for the associated controls. This makes the job of the application developer more focused on integrating the back-end business logic components with the front end, rather than worrying about validation of the parameters. In conjunction with the rich set of Web server controls, out-of-the-box ASP.NET also provides a list of prebuilt validation controls that are simple enough to be used easily, yet extensive enough to be applied in complex validation scenarios (see Listing 8.6).
<%@ Page Language="C#" %> <html> ... |