Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Form Validation
Message
 
To
23/08/2000 08:14:13
Todd Wolfe
Certified Marketing Services
Kinderhook, New York, United States
General information
Forum:
Internet
Category:
VBScript
Title:
Miscellaneous
Thread ID:
00408164
Message ID:
00408243
Views:
15
Todd;

Here is how I did this with Java Script. Hope the code can be seen.

SCRIPT LANGUAGE=javascript
function NotEmpty()
{
strSearch = document.forms("form1").elements("search").value;
if (strSearch.length > 0)
return true
else
{
alert("You must enter a value.");
return false
}
}

/SCRIPT






form action="projectlist.asp" Method="POST" id=form1 name=form1 ONSUBMIT="return NotEmpty()"
Project:


/form
Previous
Reply
Map
View

Click here to load this message in the networking platform