Hi there, tsparker...
you haven't used your variables, so this might help...
Code:
strQ = "INSERT INTO Shippers (ein, name) VALUES "
strQ = strQ & "(" & strEin & "," & strName & ")"
... however I see another thing, namely that the line...
Code:
objConn.Open strConnect
uses the variable strConnect, which is not declared or initialized anywhere (though perhaps in dataStores.asp).
Remember to close the connection.
Hope this helps
Jacob.