|
Posted by chris-usenet on January 17, 2006, 9:10 am
Please log in for more thread options
4everjune@gmail.com wrote:
> <html>
> <body>
> <form name=myform method=POST>
> <input type=hidden name=username value=abc>
> </form>
> </body>
> </html>
> In my server-side script, I'd like to access document.myform.username
> and update it dynamically.
Dynamically as in it changes after it's been rendered on the user's
display, or dynamically as in it its value is determined by the server
just as it sends the page to the client?
The first can't be done without client-side scripting.
For the second you could start with the CGI module, and get
progressively more complex by using a templating package such as
HTML::Template or the Template Toolkit.
Chris
|