%
strMake = Request("Make")
If Request.form <> "" Then
if strMake = "" then
strWarningErrMsg = "
Vehicle make can not be blank."
end if
if strWarningErrMsg = "" then
' Create a recordset object to store specific table information
Set conn = Server.CreateObject("ADODB.Recordset")
'Establish what records you want selected for the SQL query string
SQL = "Select * From CDMakes where (CDMake = '" + strMake + "')"
'Set the recordset object equal to the SQL query string
conn.Open SQL, objADO, 1, 3
if not conn.eof then
strWarningErrMsg = "Vehicle Make " & strMake & " already exists. Please input another."
else
conn.addnew
conn("CDMake") = strMake
Conn.update
Response.Redirect "menu.asp"
end if
end if
end if
%>
|
|
ADD VEHICLE MAKE |
<% if strWarningErrMsg <> "" then %>
| Error(s):<%= strwarningErrMsg %>
|
<% end if %>
|
Add the vehicle make below.
|
|