Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/02/2006, 07:14
Avatar de AlZuwaga
AlZuwaga
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
En realidad si sería posible aunque no recomendable:

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):

Código:
<%  
    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
__________________
...___...