Retroceder   Foros del Web > Administración de sitios web > Servidores Web > IIS

Respuesta
 
Herramientas Desplegado
Antiguo 15-abr-2008, 05:12   #1 (permalink)
plantala ha deshabilitado el karma
 
Avatar de plantala
 
Fecha de Ingreso: abril-2008
Ubicación: Jamaica
Mensajes: 74
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 está desconectado   Responder Citando
Antiguo 15-abr-2008, 05:20   #2 (permalink)
plantala ha deshabilitado el karma
 
Avatar de plantala
 
Fecha de Ingreso: abril-2008
Ubicación: Jamaica
Mensajes: 74
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
%>
plantala está desconectado   Responder Citando
Respuesta
Califica este Tema - Error Microsoft OLE DB Provider for ODBC Drivers (0x80004005).


Herramientas
Desplegado

Normas de Publicación
No puedes crear nuevos temas
No puedes responder temas
No puedes subir archivos adjuntos
No puedes editar tus mensajes

BB code is Activado
Caritas están Activado
[IMG] está Activado
Código HTML está Desactivado


La Zona horaria es GMT -6. Ahora son las 02:46.


Message Board Statistics

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93