Hello.

Thank you so much for your response. I did end up deciding to use straight ASP instead of Dreamweaver. It ended up being much easier. However, I am still unable to solve my problem. I create a Select statement like the one you show:
SQL = SQL + " SELECT DeptName From department WHERE DeptName = '" & inputDeptName & "'"
Set rsDeptName=conn.Execute(SQL)
When I try to run this statement, however, it will error out if I try to run another instead of printing an error message like the following:
SQL = SQL + " INSERT INTO department (department.DeptID, department.DeptName, department.Location, department.Communication, department.BestTime, department.WorstTime, department.Strength, department.Weakness, department.Responsibility1, department.Responsibility2, department.Responsibility3, department.Responsibility4, department.Responsibility5, department.Suggestion1, department.Suggestion2, department.Suggestion3, department.Suggestion4, department.Suggestion5) "
SQL = SQL + "VALUES (" + CStr(depID) + ", " + "'" + inputDeptName + "', " + "'" + inputLocation + "', " + "'" + inputCommunication + "', " + "'" + inputBestTime + "', " + "'" + inputWorstTime + "', " + "'" + inputBestThing + "', " + "'" + inputBiggestThing + "'," + "'" + inputResponsibility1 + "', " + "'" + inputResponsibility2 + "', " + "'" + inputResponsibility3 + "', " + "'" + inputResponsibility4 + "', " + "'" + inputResponsibility5 + "', " + "'" + inputSuggestion1 + "', " + "'" + inputSuggestion2 + "', " + "'" + inputSuggestion3 + "', " + "'" + inputSuggestion4 + "', " + "'" + inputSuggestion5 + "')"
Response.write SQL
conn.Execute(SQL)
Else
errorArea = errorArea + "The profile that you have entered already exists. Please press the back button and try again."
End If
I would greatly appreciate any suggestions or comments that you might have. Thanks again for your reply.