Ver Mensaje Individual
  #10 (permalink)  
Antiguo 12/09/2009, 17:25
Avatar de potzio
potzio
 
Fecha de Ingreso: septiembre-2009
Mensajes: 42
Antigüedad: 15 años, 4 meses
Puntos: 0
Respuesta: P.favor.Ayuda. GAleria sencilla en tablas

Hola de nuevo.

No será por no estar intentándolo, pero el código no me funciona.

Si no es molestia te posteo el código a ver si le encuantras algun fallo.

La conexion dns la llamo miconexion, p.ejemplo.
Base...................nombre para conexion
tabla...................nombre para recordset(en vez de rs).


Echame un cable, por favor.Gracias.

la SQL no sé si está bien o no





<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>

<%option explicit
dim base
dim tabla
dim SQL
dim id
dim titulo
id=Request.QueryString("id")
%>

<html>
<head>

<title>detalles_reformas</title>

<script type="text/javascript">

window.onload = function () {

var elementos = document.getElementById("img").getElementsByTagNam e("IMG");

for (var i=0;i < elementos.length; i++) {

//alert(elementos[i].src)

elementos[i].onclick = function () {document.getElementById("img_grande").innerHTML = "<img src="+this.src+" />";}

}

}

</script>

</head>

<body>

<% SET base=Server.CreateObject("ADODB.Connection")
SET tabla=Server.CreateObject("ADODB.Recordset")
SQL="SELECT id,titulo,descripcion,foto1,foto2,foto3,foto4 FROM tabla_reformas where id =' "&id&" ' "
base.open "miconexion"
tabla.open SQL,base,3,3
%>

<table>
<%
DO WHILE NOT tabla.EOF

%>


<tr id="img">

<td width="52" height="40"><center><img src="<%=tabla("foto1")%>" width="40" height="40" /></center></td>

<td width="52"><center><img src="<%=tabla("foto2")%>" width="40" height="40" /></center></td>

<td width="52"><center><img src="<%=tabla("foto3")%>" width="40" height="40" /></center></td>

<td width="52"><center><img src="<%=tabla("foto4")%>" width="40" height="40" /></center></td>
<td width="382">&nbsp;</td>


</tr>

<tr>

<td colspan="5" id="img_grande" height="500"> </td>

</tr>
</table>

<%
tabla.close
base.close
SET tabla=Nothing
Set base=Nothing
%>

</body>
</html>