Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/08/2002, 01:48
federicoha
 
Fecha de Ingreso: agosto-2002
Mensajes: 1
Antigüedad: 22 años, 8 meses
Puntos: 0
Re: Modificar registro tipo memo???

creo que esto te puede ayudar, para guardar el texto con formato dentro de la db.

<%
Function FormatStr(String)
on Error resume next
String = Replace(String, CHR(13), "")
String = Replace(String, CHR(10) & CHR(10), "</P><P>")
String = Replace(String, CHR(10), "<BR>")
FormatStr = String
End Function
%>

salu2.