I was wondering can I make an If condition that checks if the variable "a" contains the string "pass" and then print error message?
dim a as string
a = textbox1.text
if a = "pass" then
label1.text = "Error: you can't use the word PASS in your password"
end if