Or you could do a select statement:
Code:
sSQL = "SELECT COUNT(ID) AS TotalIDs FROM myTable WHERE spot = '" & Trim(Request.Form("spot")) & "'"
'Execute code into recordset "objRS"
If objRS("TotalIDs") > 0 Then
'Do error code saying the spot is taken
Else
'Do an INSERT statement to take that spot
End If
"ID" is the column name you want to count (usually a unique ID column). "myTable" is the table that contains your rows of spots. "spot" is the column you're comparing with the input from the form. "objRS" is a recordset that gets populated with the total from the SELECT statement.