Question:You need to validate a vendor ID entered by a user. The valid vendor IDs exist in a
database table. How can you validate this input?
A Provide a RegularExpressionValidator and set the ValidationExpression property to
/DbLookup{code}.B Provide a RangeValidator and set the MinValue property to DbLookup(code) and set
the MaxVaue property to DbLookup(code).C Provide a CustomValidator with server-side code to search the database for the
code.D Provide a CompareValidator and set the compare expression to the name of a
server-side function that performs a database lookup of the code.
+ AnswerC
+ Report