Search results


var CustNameString = "" // build a string for customer number href to summaryr project.lock() CustNameCursor = database.cursor("select * from customer where customer_name like '" + request.CustName + "%' order by customer_name") if (request.CustName.length > 0) write ("

Customer Names that begin with " + request.CustName + ".

") else write ("

All available customers by name.

") write ("

") write ("" + "" + "" + "") while (CustNameCursor.next()) { write("" + "") } //end while write ("
Customer numberName
write(CustNameCursor.customer_no); " + CustNameCursor.customer_name + "

") project.unlock()