I want to select from a select menu, 3 amounts: 1000, 5000 or 10000. After
this, the form action method should reply:
- "this is not much" if 1000 was selected,
- "this is ok" if 5000 was selected,
- "this is very much" if 10000 was selected
Now my form method looks like this:
<form action="form_action">
How many money?
<select name="money">
<option>1000
<option>5000
<option>10000
</select>
<input type="submit" value="checkit">
</form>
and the form_action method is this:
<dtml-in money>
<dtml-if "1000">
This is not much!
</dtml-if>
<dtml-if "5000">
This is ok!
</dtml-if>
<dtml-if "10000">
This is very much!
</dtml-if>
</dtml-in>
I am sure that there is an error in my thinking of these tags.
TIA
-goe-
_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
Share information about yourself, create your own public profile at
http://profiles.msn.com.
_______________________________________________
Zope maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
** No cross posts or HTML encoding! **
(Related lists -
http://lists.zope.org/mailman/listinfo/zope-announce
http://lists.zope.org/mailman/listinfo/zope-dev )