Ver Mensaje Individual
  #6 (permalink)  
Antiguo 21/03/2012, 13:32
Avatar de freesoftwarrior
freesoftwarrior
 
Fecha de Ingreso: marzo-2006
Mensajes: 362
Antigüedad: 18 años, 1 mes
Puntos: 10
Respuesta: Ubicar un texto siempre al final de la pagina (no flotante)

SOLUCIONADO:

No era con CSS sino con JavaScript

Cita:
<%
If Session("setupTC") Then
endTime = Timer()
varTextoTime = "La carga se completo en " & endtime-starttime & " segundos = " & " (" & (endtime-starttime)*1000 & " milliseconds)."
Response.Write ("<div style='position:absolute; width:100%; bottom=1px;' align='right' class='tiempoCarga'>" & varTextoTime & "</div>")
End If
%>