I have a vbscript sub that validates the fields in a form on an asp page, before submitting the form. One of the fields is a description field that I need to screen for single quotes (I can't have them) and let the user know to remove the single quote. What is the correct syntax for doing this???
Case form1.description.value ????????????????
ret = false
Msgbox "Please remove the quote symbol(')."
Call form1.description.focus()
Thanks in advance,
mwa
Case form1.description.value ????????????????
ret = false
Msgbox "Please remove the quote symbol(')."
Call form1.description.focus()
Thanks in advance,
mwa