VB.NET - Explain Form level validation and Field level Validation

Explain Form level validation and Field level Validation

Form level validation occurs once the user is ready to submit the form. The application checks the complete form at once and validates all the fields in it and informs the user about it. Field level validation occurs only for a specific field. E.g.: As soon as the user looses focus from a name input box, the application validates the data in that particular field and informs the user about it. They are normally used for mandatory fields using javascript.
NET - Describe the programming model of a windows service
Describe the programming model of a windows service - Windows services are based on the class that is inherited from System.ServiceProcess.ServiceBase class........
NET - Explain the states of a windows service application
Explain the states of a windows service application - running, paused, stopped and pending.......
NET - Explain the types of window services
Explain the types of window services - Win32OwnProcess, Win32ShareProcess......
Post your comment