Function order_onsubmit()
dim returnVal
if order.License.value = "" and order.State.value = "CA" then
order_onsubmit = false
returnVal = msgbox ("A License Number is required for California and Minnesota", 17, "Validation Error!")...
Can anyone show me the VB equivilent for the following Java snippet??
var checkOK = "0123456789-()-";
var checkStr = theForm.Phone3.value;
var allValid = true;
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)...
I am using Frontpage 2000 which has built-in validation that generates Javascript. I needed additional custom validation which I will write in Vbscript. Will the 2 scripts conflict which other??
I am using the MsgBox function in a web page and when I specify the title I want ie. "validation error" the title on the msgbox comes up "Vbscript: validation error" How do I get rid of the Vbscript portion??? Thanx!
I am using radio buttons as a way to select items for purchase. How can I add their values and display the total in a msgbox?? All suggestions appreciated!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.