Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/05/2003, 18:12
wboya
 
Fecha de Ingreso: mayo-2003
Mensajes: 11
Antigüedad: 21 años, 11 meses
Puntos: 0
Pregunta Error al mostrar datos de Base de Access



Hola, necesito conectarme a la base de acces que esta en el server y no puedo, me sale siempre este error:

"An error occurred on the server when processing the URL. Please contact the system administrator."

Les paso el codigo para que me ayuden. Gracias.

Waldo.

-----------------------------------
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Fecha</title>

<%SQLtxt = "SELECT Ids, Cambiar FROM Tareas "%>


</head>

<body>

<%set rs = CreateObject("ADODB.Recordset")
rs.Open SQLtxt, "DSN=TareasAnalistas.mdb"
%>

<center>
<table border="0" width="32%" bgcolor="#C0C0C0">
<tr>
<td width="100%">
<p align="center"><b><big>Listado de registros</big></b></td>
</tr>
</table>
<h3></center>
<br>
</h3>
<table BORDER="1" CELLSPACING="0" BORDERCOLOR="#000000"
CELLPADDING="2" width="100%">

<%
Do While NOT rs.EOF%>

<tr>
<td><%= rs("Ids")%></td>
<td><%= rs("Cambiar")%></td>
</tr>

<% rs.MoveNext
Loop
rs.Close
%>


</table>



</body>


</html>