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]
problems with 'href', 'src' and ASP syntax
RAYtracer__ .:<DREAMWALKER>:. Thu, 06 Sep 2001 14:38:40 -0700
- Re: problems with 'href', 'src' and AS... RAYtracer__ .:<DREAMWALKER>:.
- Re: problems with 'href', 'src' a... Gerald Richter
- Re[2]: problems with 'href', 'src... RAYtracer__ .:<DREAMWALKER>:.
- Re: Re[2]: problems with 'hre... Gerald Richter
