|
|
|
|
|
|
Preventive Maintenance
|
|
|
|
Through regularly scheduled service, we can reduce operating costs
by eliminating unnecessary and costly breakdowns with our maintenance
program.
These services include:
- Tightening
- Lubricating
- Adjusting
- Thorough Inspection
|
<%
' This means we're displaying the form so here goes...
' To make this interesting I'm getting a list of employees
' from a DB or text file so you don't have to keep typing
' the names into the form fields.
' The recordset is for the employee list. I then build a
' set of options for use with any select box and store it
' in the string variable for multiple uses. The last var
' is just a temp building area.
Dim rstEmployeeList
Dim strEmpOptions
Dim strTemp
' Now we just build our form.
' The message for section was originally built from the same
' string as shown in the commented out section, but so you can
' play with it on our site, I thought I should open it up to
' let you enter any address.
%>
|
|