OligoDan schrieb:
> I have a input text box on a form that is displayed again after the
> user submits the form. I would like to populate this text box with
> the user's last entry. This should be an easy one, but I can't find
> any examples of someone doing this.
>
> The value returned on the form is called "sequence."
>
> This only prints the word "sequence" in the text box, not the returned
> value of sequence:
> <input type="text" name="sequence" size="50" maxlength="45"
> value="sequence"></input>
>
> How can I get the template to populate the text input with the
> returned value of "sequence?"
Reading the KID-Documentation is a start. There are several ways to
accomplish that, one would be
<input value="${sequence}"/>
Diez
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---