Ver Mensaje Individual
  #8 (permalink)  
Antiguo 16/12/2011, 06:17
ocarrasco20
 
Fecha de Ingreso: diciembre-2011
Ubicación: Algarrobo
Mensajes: 17
Antigüedad: 12 años, 5 meses
Puntos: 0
Respuesta: obtener salida html de un asp por ajax

Estimados aclaro el post para que me entiendan mejor, necesito editar un informe previamente obtenido con la libreria MSXML2.ServerXMLHTTP, el asunto es que necesito leer un css que está en el informe como:

Código HTML:
Ver original
  1. <link href="css/estilos_rep34.css" rel="stylesheet" type="text/css" />

y en vez de llamarlo así tomar el css que está externo y pegar el código en el informe, para ejemplificación así sería:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  4. <title>Informe Intermedio eMAT 3-4</title>
  5. <style type='text/css'>
  6.  
  7. body {
  8.     font-family:Verdana, Geneva, sans-serif;
  9. }
  10.  
  11. p {
  12.     margin:3px;
  13. }
  14.  
  15. .bg_top {
  16.     background-image:url(../img/bg_top.gif);
  17.     background-repeat:repeat-x;
  18.     height: 79px;
  19.    
  20. }
  21. .titulo_top {
  22.     color:#4d4d4d;
  23.     font-size:18px;
  24.     font-weight:bold;
  25.     margin-left:20px;
  26.     width:700px;
  27.     height:20px;
  28.    
  29. }

Gracias.