Hi All!
i got the the following error while on open the recordset.
plx explain.
Microsoft JET Database Engine (0x80040E14)Syntax error in FROM clause.
it's my source code :
<%@ Language="VBScript"
%>
<%
'declare the variables
Dim cn , rs
Dim sSQL, sConnStr
'declare SQL statement
sSQL="SELECT * FROM [User]"
sConnStr="PROVIDER=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & Server.MapPath("Login.mdb")
'create an ADO connection and recordset
Set cn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
'Open the connection to the database
cn.Open sConnString
'Open the recordset object, execute the SQL statement
rs.Open sSQL,cn,3,1,2
%>

Muthu