Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/10/2006, 11:57
Avatar de RsOfT
RsOfT
 
Fecha de Ingreso: marzo-2002
Ubicación: InterNET
Mensajes: 1.121
Antigüedad: 22 años, 2 meses
Puntos: 7
Hacer que el Response.Write imprima al final de la Página

Existe alguna forma de que el Response.Write() imprima al final de la página y no al inicio?

Estoy imprimiendo algo como esto:
Código:
Dim strHTML As String
strHTML = "<table border=1 style='font-size: 8pt; font-family: Verdana'>" & _
	"<tr>" & _
		"<th colspan='17'>RESUMEN solicitudes - Del 02 de Octubre al 07 de Octubre</th>" & _
	"</tr>" & _
	"<tr>" & _
		"<th rowspan='2'>Responsable</th>" & _
		"<th>Pendientes</th>" & _
		"<th>Recibidas</th>" & _
		"<th>Total</th>" & _
		"<th rowspan='2'>Planificadas</th>" & _
		"<th colspan='5'>Terminadas</th>" & _
		"<th colspan='5'>Indices Terminadas</th>" & _
		"<th colspan='2'>Pendientes</th>" & _
	"</tr>" & _
	"<tr>" & _
		"<th>Al 02 Oct 2006</th>" & _
		"<th>Al 07 Oct 2006</th>" & _
		"<th>Solic.</th>" & _
		"<th>Planificadas</th>" & _
		"<th>No Planific.</th>" & _
		"<th>Total</th>" & _
		"<th>Horas Planif.</th>" & _
		"<th>Horas</th>" & _
		"<th>Planificadas</th>" & _
		"<th>No P./Total</th>" & _
		"<th>Total/Plan.</th>" & _
		"<th>Total/T.Sol.</th>" & _
		"<th>H x Sol.</th>" & _
		"<th>Al 07 Oct 2006</th>" & _
		"<th>%</th>" & _
	"</tr>" & _
	"<tr>" & _
		"<td>Joe</td>" & _
		"<td>30</td>" & _
		"<td>0</td>" & _
		"<td>30</td>" & _
		"<td>0</td>" & _
		"<td>0</td>" & _
		"<td>2</td>" & _
		"<td>2</td>" & _
		"<td>0</td>" & _
		"<td>70:25</td>" & _
		"<td>0%</td>" & _
		"<td>100%</td>" & _
		"<td>#DIV/0!</td>" & _
		"<td>7%</td>" & _
		"<td>1.5</td>" & _
		"<td>28</td>" & _
		"<td>93%</td>" & _
	"</tr>" & _
"</table>"

Response.Write(strHTML)
Pero se está imprimiendo arriba de todo el diseño de la página. ¿Alguna idea?
__________________
.::RsOfT::.
--El que se aferra a lo conocido, nunca conocerá lo desconocido--
--Es intentando lo imposible como se realiza lo posible--
--Es de pésimo gusto contentarse con algo mediocre cuando lo excelente está a nuestro alcance--