Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/05/2006, 04:18
GauTxori
 
Fecha de Ingreso: abril-2006
Ubicación: Bizkaia
Mensajes: 70
Antigüedad: 19 años
Puntos: 0
haber si te sirve el ejemplo este:
Código:
<%
cadena ="Mike" & chr(13) & "l"
function PonerEspacios (nespacios)
'nespacios = 5
t=""
for i = 0 to nespacios
	t = t &  "&nbsp;"
next
PonerEspacios = t
end function

 %>
<html>
<head>
	<title>Untitled</title>
</head>

<body>
Cadena Introducida<%= cadena %><br>
Cadena Con espacios<%= replace(cadena,chr(13),PonerEspacios(10)) %>


</body>
</html>
Igual hay alguna funcion ya creada, pero para salir del paso...