Solaris 7 Sparc
Apache 1.3.14, Mod Perl 1.24
Embperl 1.3.1
Problem:
Using [* *] delimiters, when I dynamically generate any select, or text boxes
or whatever that Embperl should be replacing with formdata inputted values, if I first
go to the page, it looks normal, but when I refresh the screen, the print OUT
statements appear. Even if you don't pass any data via a form or URL, as soon as you
hit refresh, it messes up.
Example code:
[*
my $TestVar = 'testvar' ;
*]
<table>
<tr>
<td>Test</td>
<td><input type="text" name="test" value="[* print OUT $TestVar ; *]"></td>
</tr>
</table>
Viewing the page source via the web browser first visit:
<table>
<tr>
<td>Test</td>
<td><input type="text" name="test" value="testvar"></td>
</tr>
</table>
After a refresh:
<table>
<tr>
<td>Test</td>
<td><input type="text" name="test" value="[* print OUT $TestVar ;
*]">testvar"></td>
</tr>
</table>
Any ideas?
Thanks!
Bill
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]