%
strcat = Request("cat")
If Request.form <> "" Then
if strcat = "" then
strWarningErrMsg = "
Service Category 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 TblServiceCategories where (CategoryName = '" + strcat + "')"
'Set the recordset object equal to the SQL query string
conn.Open SQL, objADO, 1, 3
if not conn.eof then
strWarningErrMsg = "Service Category " & strcat & " already exists. Please input another."
else
conn.addnew
conn("CategoryName") = strcat
Conn.update
Response.redirect "ManageServices.asp"
end if
end if
end if
%>
|
ADD A SERVICE CATEGORY
|
||
|
|
||