VB.NET - Field-level validation and form-level validation

Define field-level validation and form-level validation.

Field- level validation ensures that the value entered in the field as a whole in accordance with the requirement of the application. If it is not in accordance the user can be alerted.

Form-level validation is the process of validating all the fields on a form at once. It is usually called when the user is ready to proceed to another step.
VB.NET - Steps to add a control to a form at run time
VB.NET - Steps to add a control to a form at run time - Declare and instantiate a new instance of the control......
VB.NET - Define implicit cast and explicit cast
VB.NET - Define implicit cast and explicit cast - Implicit cast allows conversion without and loss of data.....
VB.NET - When do you use enums and constants?
VB.NET - When do you use enums and constants? - Enums and constants make the code easier to understand and maintain ......
Post your comment