Re: [Gambas-user] server pages again... possible bug

2009-05-03 Thread Joshua Higgins
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" > > %> > > > > > > > >

Re: [Gambas-user] server pages again... possible bug

2009-05-03 Thread 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" > %> > > > > > > > This looks okay to me, but on running, <$= sEnv%> inside the tag is > not evaluated, presumably because it is inside th

[Gambas-user] server pages again... possible bug

2009-05-03 Thread Joshua Higgins
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