0% found this document useful (0 votes)
39 views2 pages

What Are The Different Types of Validation Controls?

The document discusses 5 interview questions about ASP.Net validation controls, server controls, code-behind classes, the CustomValidator control property, and software required to serve ASP.Net pages. Specifically, it covers the different validation control types like RequiredFieldValidator and RangeValidator, that server controls run on the server and encapsulate UI functionality, code-behind classes contain server-side code, the OnServerValidate property specifies the CustomValidator event handler, and that the .NET Framework and a web server supporting ASP.NET must be installed to serve ASP.Net pages.

Uploaded by

santanu mahala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views2 pages

What Are The Different Types of Validation Controls?

The document discusses 5 interview questions about ASP.Net validation controls, server controls, code-behind classes, the CustomValidator control property, and software required to serve ASP.Net pages. Specifically, it covers the different validation control types like RequiredFieldValidator and RangeValidator, that server controls run on the server and encapsulate UI functionality, code-behind classes contain server-side code, the OnServerValidate property specifies the CustomValidator event handler, and that the .NET Framework and a web server supporting ASP.NET must be installed to serve ASP.Net pages.

Uploaded by

santanu mahala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Asp.

Net Interview Questions for Experienced Pdf


Question: 1

What are the different types of validation controls?


There are six types of validation controls available:

RequiredFieldValidator

RangeValidator

RegularExpressionValidator

CompareValidator

CustomValidator

ValidationSummary

Question: 2

What are server controls?


ASP.NET server controls are components that run on the server and encapsulate user-interface
and other related functionality.

They are used in ASP.NET pages and in ASP.NET code-behind classes.

Question: 3

What type of code (server or client) is found in a


Code–Behind class?
Server– side code.

Question: 4
What is the property you need to set for the
CustomValidator control that specifies the event
handler?
OnServerValidate.

Question: 5

What software packages must be installed to serve


ASP.NET pages from a computer?
For a computer to serve ASP.NET pages, the .NET Framework and a web server that supports
ASP.NET must be installed.

You might also like