
04/05/2005, 10:27
|
 | Colaborador | | Fecha de Ingreso: febrero-2001 Ubicación: 34.517 S, 58.500 O
Mensajes: 14.550
Antigüedad: 24 años, 2 meses Puntos: 535 | |
Si hay forma, pero no lo recomiendan: Cita: If your Access database is on another server, you will need to ensure that Jet 4.0 is installed on the remote server, and that you know the *local* location of the MDB file on that server. Once you have those two vital pieces, you can use a connection string like this (see Article #2168 for more details):
<%
cst = "Provider=MS Remote;" &_
"Remote Server=http://<x.x.x.x>;" &_
"Remote Provider=Microsoft.Jet.OLEDB.4.0;" &_
"Data Source=c:\inetpub\wwwroot\file1.mdb;"
set conn = CreateObject("ADODB.Connection")
conn.open cst
%> (And I feel sorry for you. Access is not really up to this task, as I'm sure you'll quickly learn.)
Fuente: http://www.aspfaq.com/show.asp?id=2126 Saludos
__________________ ...___... |