Thinking about it, it makes more sense just to
<% PRINT ""%>
2009/5/3 Benoît Minisini
> > I'm trying to dynamically change an image. Here is a simple page:
> >
> >
> > #!/usr/bin/env gbw2
> > <%
> > DIM sEnv AS String
> > %>
> >
> >
> >
> > <%
> > sEnv = "hello.jpg"
> > %>
> >
> >
> >
> >
> I'm trying to dynamically change an image. Here is a simple page:
>
>
> #!/usr/bin/env gbw2
> <%
> DIM sEnv AS String
> %>
>
>
>
> <%
> sEnv = "hello.jpg"
> %>
>
>
>
>
>
>
> This looks okay to me, but on running, <$= sEnv%> inside the tag is
> not evaluated, presumably because it is inside th
I'm trying to dynamically change an image. Here is a simple page:
#!/usr/bin/env gbw2
<%
DIM sEnv AS String
%>
<%
sEnv = "hello.jpg"
%>
This looks okay to me, but on running, <$= sEnv%> inside the tag is
not evaluated, presumably because it is inside the img tag. Is this expected
behavi