Thank you so much for your quick response.
I tried your code and it still didn't work.
I don't want it to write a response on the page. If someone selects the Add button it's supposed to run Function AddItem to actually add the data to the database. Also, with using your code it is opening the initial page with "No Input" which was in the response.write. I don't want it to process the action until after the initial page loads and one of the buttons is selected.
So I tried changing the code to:
<%
action = Request.QueryString("action"

If action = "Add" then
Call AddItem
If action = "Save" then
Call RenameItem
If action = "Delete" then
Call DeleteItem
End If
%>
<FORM NAME="AdmCat" ACTION="AdministerCategoryGroup.ASP?Command=EXECUTE METHOD="GET">
<INPUT type="submit" value="Add" name="action">
<INPUT type="submit" value="Save" name="action">
<INPUT type="submit" value="Delete" name="action">
And got this error message:
Microsoft VBScript compilation error '800a03ea'
Syntax error
/cfms/_ClassFileProperties.asp, line 16
class classFileProperties
^