--%>

Types of validation controls of ASP.NET AJAX 4.0

List the types of validation controls that are available in the ASP.NET AJAX 4.0?

E

Expert

Verified

The validation controls that are available in the ASP.NET AJAX 4.0 are as follows:

PasswordStrengthExtender – It measures strength of a password text entered inside the text box by legalize through the different strength specified parameters

MaskedEditValidator and MaskedEditExtender – It limits the user to enter only the certain pattern of the characters in a TextBox by applying the mask to a input.

ValidatorCalloutExtender – It attaches to a ASP.NET validators so that error messages will not be displayed as the simple text but as the balloon-style ToolTip.

FilteredTextBoxExtender – It enables us to apply filtering to the text box.

NoBot: This prevents spam or bot from filling an input forms automatically and employs a totally Automated Public Turing test to tell Computers and Humans Apart ( or CAPTCHA), which is a kind of challenge-response test to make sure that response is not generated by a computer.

   Related Questions in Programming Languages

  • Q : Grade someone activities Normal 0 false

    Normal 0 false false

  • Q : Which is the tool having demand within

    Which is the excellent tool one should learn, which is the tool having demand within the market?

  • Q : Explain Parallel programming Parallel

    Parallel programming: It is a style of programming in which statements are not essentially executed in an ordered series but in parallel. The parallel programming languages make it simpler to produce programs which are designed to be run on multi-proc

  • Q : What is an Assembly language Assembly

    Assembly language: This is a symbolic language closely analogous to the instruction set of a Central Processing Unit. The program employed to translate a program written in assembly language is termed an assembler.

  • Q : What is Actual argument Actual argument

    Actual argument: The value of an argument enacted to a method from exterior to the method. Whenever a method is called, the real argument values are copied into analogous formal arguments. The kinds of the actual arguments should be compatible with th

  • Q : Write a recursive implementation of

    Assignment 5 Selecting Array Elements Implement the following C++ code in assembly language, using the block-structured .IF and .WHILE directives. Assume that all variables are 32-bit signed integers: int array[] = {10,60,20,33,72,89,45,65,72,18}; int sample = 50; intArraySize = s

  • Q : How can I get an exact image in a web

    How can I get an exact image in a web page?

  • Q : Define Thread starvation Thread

    Thread starvation: It is a condition which applies to a thread which is prevented from running by other threads which do not yield or turn into blocked.

  • Q : Calculate the summation of 1 to some

    Write two programs to calculate the summation of 1 to some integer n using a function called int summation(int n) a) Using a non recursive solution, with a for(i=1, i<=n; i++) loop and b) using a recursive solution, based on the following conditions summation(n) = summation(n-1

  • Q : Define Deadlock Deadlock : A situation

    Deadlock: A situation which occurs whenever two threads each acquires the lock to one of a set of resources which they both require.