You will create a two page web site. You will use query string, cookie, and session state to pass information from the first page to the second page.
Lab7
Default.aspx
Default.aspx.vb
Default2.aspx
Default2.aspx.vb
Posted by Rick Tempestini on July 11, 2007
You will create a two page web site. You will use query string, cookie, and session state to pass information from the first page to the second page.
Lab7
Default.aspx
Default.aspx.vb
Default2.aspx
Default2.aspx.vb
Posted in Labs | Tagged: ASP.NET, Lab, State Management | Leave a Comment »
Posted by Rick Tempestini on July 11, 2007
In this lab you will build a simple form that demonstrates the usage of the ASP.NET validation controls. You will create a simple form that accepts a Name, Age, Email, and Phone Number for a person.
The requirements for the text boxes on this entry page are listed below:
| Requirement | Validation Control Needed |
| The Name field is required and cannot be blank | RequiredFieldValidator |
| The Age field must not allow numbers less than zero or greater than 100 | RangeValidator |
| The Email field must capture valid internet email addresses | RegularExpressionValidator |
| The Phone Number field must capture valid phone numbers | RegularExpressionValidator |
You will then configure the validators to properly meet the requirements above. At the end, you will implement the Validation Summary control to change the display of the validation errors.
Posted in Labs | Tagged: ASP.NET, Lab, Validation | Leave a Comment »