I have a question.
I want to open the MS Access file with user-level Security.
I know that if I do NOT setup user-level Security in the MS Access file, and create the table for login in the MS Access file, then it works. I did that.
But, I want to know whether or not we can use ASP code to open the MS Access (MS Access user-level Security setting).
Can we do it in ASP?
The following code cannot support it:
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Provider="Microsoft.Jet.OLEDB.4.0"
conn.Open "c:/try.mdb"
%>
Please let me know, thanks.