Scripsit Scott Bryce:
The OP needs to know that 1) vbscript only runs in IE, and 2) form
validation should always be done server side.
3) preliminary auxiliary form validation _can_ (and often should) be done
client-side, _too_, but
a) it should be done in JavaScript, not vbscript
b) it should be done in a manner that does not prevent form submission when
JavaScript is not enabled - normally, it's done via an onsubmit="..."
attribute in a <formelement that contains a normal <input type="submit">
element.
--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/