|
 |
asp_ado_rds thread: will it work
Message #1 by "atif tanver" <atiftanveer@h...> on Fri, 9 Feb 2001 14:23:37
|
|
Hello,
using MS. Access at back end i am wroking on site with ASP.
when i will upload my site will my same connection will work which i am
using with IIS. i know it will not work.
objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" &_
"DataSource=d:\hafeez\members.mdb;" &_
"Persist Security Info=Fals"
what changes or parameters i have to set a successful connection, while
uploading my files
atif
Message #2 by "Oscar Campos" <oscar@b...> on Fri, 9 Feb 2001 17:06:09
|
|
I am assuming that you are uploading it to a remote site provided by an
ISP?(ex: Brinkter.com) If so, I believe this is what you need to do.
<%
Dim objConn
Set objConn = "Provider=Microsoft.Jet.OLEDB.4.0; " & _
Map.ServerPath & "/hafeez/data/members.mdb;" & _
"Persist Security Info=False"
objConn.Open
%>
Hope it helps..
Oscar
> Hello,
>
> using MS. Access at back end i am wroking on site with ASP.
> when i will upload my site will my same connection will work which i am
> using with IIS. i know it will not work.
>
> objConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" &_
> "DataSource=d:\hafeez\members.mdb;" &_
> "Persist Security Info=Fals"
>
> what changes or parameters i have to set a successful connection, while
> uploading my files
>
> atif
|
|
 |