![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
01/09/2006, 09:53
|
| | Fecha de Ingreso: enero-2006
Mensajes: 233
Antigüedad: 19 años, 1 mes Puntos: 2 | |
sigue <table width="100%" align="center" border="0" cellspacing="2" cellpadding="2" class="TablaSimple">
<tr>
<td width="70"><img src="<%=(strMainDir)%>_gui/multimedia_informe.jpg" border="0"></td>
<td><strong><span style="color:#FF0000; font-size:14px;">Informe de los Archivos Subidos al Servidor</span><br><br>Total:</strong> <%=(total_subido)%> de <%=(strMaxFiles)%></td>
</tr>
<tr>
<td colspan="2"><hr></td>
</tr>
<tr>
<td colspan="2">
<%
strReporteListado_split = split(strReporteListado, "[separar]")
%>
<table width="100%" align="center" border="0" cellspacing="2" cellpadding="2" class="TablaSimple">
<%
for I = 0 to ubound(strReporteListado_split)-1
if left(strReporteListado_split(I), 4) = "<ok>" then
icon_reporte = strMainDir & "_gui/mini_icon_multimedia_ok.gif"
descripcion_reporte = strReporteListado_split(I)
else
icon_reporte = strMainDir & "_gui/mini_icon_multimedia_error.gif"
descripcion_reporte = "<span style=""color:#FF0000;"">" & strReporteListado_split(I) & "</span>"
end if
%>
<tr>
<td width="16"><img src="<%=(icon_reporte)%>" border="0"></td>
<td><%=(descripcion_reporte)%></td>
</tr>
<%
next
%>
</table>
</td>
</tr>
</table>
<%
end if
%>
</div>
</fieldset>
<table width="100%" align="center" border="0" cellspacing="2" cellpadding="2" class="TablaSimple">
<tr>
<td align="center" height="40">
<input name="boton_nuevo" type="button" class="Botones" value="Nueva Galería" onClick="document.location.href='<%=(strPaginaActu al & "?modo=agregar&tipo=" & tipo & "&valores=0")%>'">
<%
if strReporteListado = "" then
%>
<input name="boton_subir" type="submit" value="Subir Archivos" class="Botones">
<%
else
%>
<input name="boton_seguirsubiendo" type="button" value="Seguir Subiendo" class="Botones" onClick="document.location.href='<%=(strPaginaActu al & "?valores=" & valores & "&tipo=" & tipo & "&modo=edicion&multimedia_codigo=" & multimedia_codigo)%>'; this.disabled=true;">
<%
end if
%>
<input name="boton_cancelar" type="button" value="Cancelar" class="Botones" onClick="window.close()">
<input type="hidden" name="txtmultimedia_codigo" value="<%=(multimedia_codigo)%>"></td>
</tr>
<%
if multimedia_codigo <> 0 then
%>
<tr>
<td align="center"><input name="boton_insertar" type="button" class="Botones" value="Insertar la Galería" onClick="parent.insertargaleria(<%=(multimedia_cod igo)%>,'<%=(multimedia_titulo)%>')" style="width:150px;"></td>
</tr>
<%
end if
%>
</table>
</form>
</body>
</html> |