Foros del Web

Foros del Web (http://www.forosdelweb.com/)
-   IIS (http://www.forosdelweb.com/f59/)
-   -   Error Microsoft OLE DB Provider for ODBC Drivers (0x80004005) (http://www.forosdelweb.com/f59/error-microsoft-ole-db-provider-odbc-drivers-0x80004005-576090/)

plantala 15/04/2008 05:12

Error Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
 
Me he creado una pagina web, y la he metido dentro del wwwroot.Cuando intento ejecutarla me sale el siguiente error:
--------------------------------------------------------------------------------------------
HTTP 500.100. Error interno del servidor: error de ASP
Servicios de Internet Information Server

Información técnica (para personal de soporte técnico)

* Tipo de error:
Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
[Microsoft][Controlador ODBC Microsoft Access] El motor de base de datos Microsoft Jet no puede abrir el archivo '(desconocido)'. Está abierto en modo exclusivo por otro usuario o bien necesita permiso para ver sus datos.
/Mikel/Sitio sin nombre 1/Connections/Referencias.asp, line 8

* Tipo de explorador:
Mozilla/5.0 (Windows; U; Windows NT 5.0; es-ES; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13
--------------------------------------------------------------------------------------------
Espero que si alguien entiende de esto, se preste a darme ayuda.
Gracias.

plantala 15/04/2008 05:20

Re: Error Microsoft OLE DB Provider for ODBC Drivers (0x80004005)
 
Se me olvidava, aqui dejo el codigo de la pagina.
----------------------------------------------------------------
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Inaug.asp" -->
<%
Dim Recordset3
Dim Recordset3_numRows

Set Recordset3 = Server.CreateObject("ADODB.Recordset")
Recordset3.ActiveConnection = MM_Inaug_STRING
Recordset3.Source = "SELECT * FROM referencia ORDER BY Nombre ASC"
Recordset3.CursorType = 0
Recordset3.CursorLocation = 2
Recordset3.LockType = 1
Recordset3.Open()

Recordset3_numRows = 0
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
<style type="text/css">
<!--
.Estilo1 {
color: #0000CC;
font-weight: bold;
}
-->
</style>
</head>

<body>
<table width="400" border="1" align="center">
<tr>
<td><div align="center"><%=(Recordset3.Fields.Item("Nombre" ).Value)%></div></td>
</tr>
</table>
<table width="400" border="0" align="center">
<tr>
<td><span class="Estilo1">Descripci&oacute;n:</span></td>
</tr>
<tr>
<td><%=(Recordset3.Fields.Item("Descripcion").Valu e)%></td>
</tr>
</table>
<table width="400" border="0" align="center">
<tr>
<td><span class="Estilo1">Recubrimientos disponibles :</span></td>
</tr>
<tr>
<td><%=(Recordset3.Fields.Item("Recubrimiento").Va lue)%></td>
</tr>
</table>
<table width="400" border="0" align="center">
<tr>
<td><span class="Estilo1">Presentaci&oacute;n:</span></td>
</tr>
<tr>
<td><%=(Recordset3.Fields.Item("Presentacion").Val ue)%></td>
</tr>
</table>
<p>&nbsp;</p>
<table width="400" border="1" align="center">
<tr>
<td><%=(Recordset3.Fields.Item("Imagen").Value)% ></td>
</tr>
</table>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
</body>
</html>
<%
Recordset3.Close()
Set Recordset3 = Nothing
%>


La zona horaria es GMT -6. Ahora son las 07:03.

Desarrollado por vBulletin® Versión 3.8.7
Derechos de Autor ©2000 - 2026, Jelsoft Enterprises Ltd.