VB error code 800A0400
I have the above famous error code and of course everything stops
This is the code:
<%
Master = request.constring("Master")
'Set the connection to the ODBC name on the server
'
'Conn.Open ("Transtext")
'
Set Conn = Server.CreateObject("ADODB.Connection")
conString = "DBQ=D:\private\files\transtext.mdb"
Conn.Open "DRIVER={Microsoft Access Driver (*.mdb)};"
& conString
set rsData=Conn.execute("select * from [Menu] where Master = " & Master)
%>
The error occurs at the line after "& constring" and the message is "Expected statement"
All help and suggestions gratefully appreciated.
|