Web Development
cprog497.txt
Associated article: Kicking and Scripting: JavaScript and CGI
Tags: Web Development JVM Languages
Published source code accompanying Al Stevens column in which he uses JavaScript and C to build an order-entry system for his web page.
C Programming Column
by Al Stevens
Listing One
<SCRIPT LANGUAGE="JavaScript">
<!---------------------------------------------------------------
function isOK(field)
{
if (field.value == null || field.value == "") {
alert("Please enter " + field.name);
field.focus();
field.select();
return ...


