Is there a good way to validate a textbox entry by the user against a dataset?
I.e
Dataset: VENDORS - Cisco, Dell, Microsoft
I would like the string entered in the textbox (txtVendor) to be searched for in the dataset, and if found, thrown an error saying that the Vendor already exists.
I...