02.09.2001 14:27

hello, Embperl!

I like the ASP-style syntax much more than that of Embperl *sorry=)*
I've tried to rewrite some of my old Embperl code to ASP style but not
the whole code worked correctly after that, here an example:

the Embperl code
        [* $THEURL='http://far.away'; *]
        <a href="[+ $THEURL +]">
                [+ $THEURL +]
        </a>
becomes:
        <a href="http://far.away";>
                http://far.away
        </a>

but the same with ASP
        <% $THEURL='http://far.away'; %>
        <a href="<%= $THEURL %>">
                <%= $THEURL %>
        </a>
becomes:
        <a href="<%= $THEURL %>">
                http://far.away
        </a>

I had the same problem with 'src' inside an 'img' tag.
is it a bug? if not, what can I do?

thanx

bye =)

...and may the tux be with you!

-----------------------------
Ivan G. Shevchenko
RAYtracer__ .:<DREAMWALKER>:.
ANARCHOPOLIS [] XSDI
[EMAIL PROTECTED]
http://xlnc.port5.com/
81800129


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to