Discuss the following:
A Visual Studio 2005 Project with one web form
Q: Use the Library and other resources to create an ASP.NET project with Visual Studio 2005 that contains one aspx form. The form should contain the following controls:
- Button control
- Two TextBox controls
- Label control
- CustomValidator control
Write a method that handles the CustomerValidator's ServerValidate event. In addition, write a JavaScript function for the CustomValidator's CustomValidationFunction property. Each method should verify that the user entered an integer in each text box and that the product of the integers is not a multiple of 7. Display the product of the numbers in the Label control if the numbers entered by the user satisfy the validation tests.