Forums
Hi!
If I have a HTML source that includes something like the following:
<%= Name %> / <%= %char(Value) %>
Notice the space on each side of the / (slash)!
The above code will - when imported into my program - generate the following:
ResponseEncTrim( Name );
ResponseWrite(' /+
');
ResponseEncTrim( %char(Value) );
and the resulting HTML will be something like:
MyName /999
Notice that it has removed the space on the right side of the / (slash)!
Best regards,
John Foldager
www.izone.dk
www.icebreakforum.org
Re: Parser handles / (slash) incorrectly
Hi John;
Yes - I see this. The RPG compiler omits the first blank after the slash...
I'll send it to the tech guys, so the can enhance the precopiler..
Thanks
Niels