Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/05/2005, 09:30
sqa212
 
Fecha de Ingreso: mayo-2003
Mensajes: 866
Antigüedad: 22 años
Puntos: 0
Perdona, trasgukabi

si pongo:
<% Function AcomodarTXT(txt)
txt = Replace (txt, "<", "&lt;")
txt = Replace (txt, ">", "&gt;")
txt = Replace (txt, vbCrLf, "<BR>")
txt = Replace (txt, "''", "'")
acomodarTXT = txt
End function %>

me aparece esto:
insert into funciones (codigofuncion) values ('')

si quito <% y %> me aparece:

insert into funciones (codigofuncion) values ('Function AcomodarTXT(txt) txt = Replace (txt, "<", "<") txt = Replace (txt, ">", ">") txt = Replace (txt, vbCrLf, "
") txt = Replace (txt, "''", "'") acomodarTXT = txt End function ')