Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/04/2007, 11:01
Avatar de CésarBalaguer
CésarBalaguer
 
Fecha de Ingreso: octubre-2006
Ubicación: en mi casa
Mensajes: 181
Antigüedad: 18 años, 7 meses
Puntos: 0
Re: Incluir documento pdf en pagina asp

<html>
<body>
<img src='imagen_archivo_pdf' onclick='javascript:abredocumentopdf();'>
<script language='javascript'>
function abredocumentopdf(){
document.location='http://mi_documento.pdf';
}
</script>
</body>
</html>