Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/10/2015, 07:38
Paty_RR
 
Fecha de Ingreso: enero-2013
Mensajes: 176
Antigüedad: 11 años, 4 meses
Puntos: 2
Respuesta: Documentos PDF

Con html se puede mostrar, te dejo estas dos opciones:

Código HTML:
Ver original
  1. <div id="portapdf">
  2.    <iframe src="~/Resources/Precios.pdf" style="width: 100%; height: 100%;" frameborder="0" scrolling="no">
  3.        <p>It appears your web browser doesn't support iframes.</p>
  4.    </iframe>
  5. </div>


Opcion 2

Código HTML:
Ver original
  1. <div id="portapdf">
  2.      <object data="../Resources/Precios.pdf" type="application/pdf">
  3.             <p>It appears you don't have Adobe Reader or PDF support in this web browser. <a href="http://www.forosdelweb.com/f18/Resources/Precios.pdf">Click here to download the PDF</a>. Or <a href="http://get.adobe.com/reader/" target="_blank">click here to install Adobe Reader</a>.</p>
  4.             <embed src="../Resources/Precios.pdf" type="application/pdf" />
  5.      </object>
  6. </div>
__________________
Define tus intereses, se curioso, investiga, comete errores, aprende, practica, mejora, enseña y vuelve a comenzar....