hi guys,
i have been at this for a few days now. at first i was getting:
That username is already in use. Please choose another
then i got smart and read-up on the forums and discovered that i needed to share the folder in which the testdb.mdb file was contained in.
now i get this new error:
- An error occured. -2147217900 : The INSERT INTO statement contains the following unknown field name: 'username'. Make sure you have typed the name correctly, and try the operation again
and this is what i have for that section in the register.asp:
'// create the SQL
strSQL = "INSERT INTO members ([username],[password]) VALUES " & _
"('" & fixQuotes(Request.Form("username")) & "','" & _
fixQuotes(Request.Form("password")) & "')"
'// run the SQL
objConn.Execute strSQL
'// check for an error
'// ATTENTION: this should be changed depending on the database provider
If Err.Number = -2147467259 Then
strError = "- That username is already in use. Please choose another<br>" & vbNewLine
ElseIf Err.Number <> 0 Then
strError = "- An error occured. " & Err.Number & " : " & _
Err.Description & "<br>" & vbNewLine
is there anyone else out there with the same problem or who can help.......
please help......