[Microsoft][ODBC Microsoft Access Driver] Could not find installable ISAM.
/script_folder/script.asp, line x
--------------------------
Here is the gist of my script:
--------------------------
<%@ Language = "VBScript"%>
<%
'Declare all local variables
dim conn
dim strsql
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "Activation_Form"
strsql = ""
if (Request.Form("hiddenField")="new_file") then 'Insert New Form into
DataBase
'build the sql statement based on the input from the form
strsql = "input from form"
'Use the execute method of the connection object then insert the record
conn.execute(strSQL)
Response.Write("<html><title>ParishPay Activation Form</title><body><h4>Your
record has been added</h4></body></html>")
elseif (Request.Form("hiddenField")="old_file")then 'Update a record in the
DataBase
strsql = "input from form"
conn.Execute(strsql)
Response.Write("<html><title>ParishPay Update Form</title><body><h4>Your
record has been Updated</h4></body></html>")
end If
conn.close
set conn = nothing
%>
http://www.aspfaq.com/show.asp?id=2259
have you tried
conn.Open "Activation_Form", dbuser, dbpass
even if there is no username or password security present
can cause massive hair loss this one...
tris