Re: Can psp "read" the html field value?
HS WAI <drwaiyy-/[email protected]> Mon, 1 Feb 2010 11:11:31 +0800 (SGT)
| Newsgroups | gmane.comp.python.webware |
|---|---|
| Message-ID | <[email protected]> |
Hi, Thanks for your prompt response. I want to get the value form user input/selected option <html> <body> <select name='query' id='query'> <option value='a'>a</option> <option value='b'>b</option> </select> <% # How to get user selected option? # what I want to do .... # if option == a, get data from a xml file... where the childNode is "a" # # i.e. select different option will get different data from a xml file # no form is called %> <input type="hidden" id="selected" name="selected" value="<%= #data from xml %>"> </body> </html> Thanks for your help and advise. --- On Sun, 31/1/10, Christoph Zwerschke <[email protected]> wrote: From: Christoph Zwerschke <[email protected]> Subject: Re: [Webware-discuss] Can psp "read" the html field value? To: "Discussion of Webware for Python including feedback and proposals." <webware-discuss-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org> Date: Sunday, 31 January, 2010, 11:56 PM Am 31.01.2010 11:01 schrieb HS WAI: > I am new to python server pages. > Can psp "read" the html field value > ... > <input type="hidden" id="selected" name="selected" value="0"> > <% > # Read/Get the above hidden field value > # Perform some task > #re-write the hidden field value > %> I don't understand exactly what you want, but maybe this? <% compute hidden_value %> <input type="hidden" id="selected" name="selected" value="<%= hidden_value%>"> Or do you want to get the hidden value from a submitted form? You get it like all other form fields with req.field('name_of_field'). -- Christoph ------------------------------------------------------------------------------ The Planet: dedicated and managed hosting, cloud storage, colocation Stay online with enterprise data centers and the best network in the business Choose flexible plans and management services without long-term contracts Personal 24x7 support from experience hosting pros just a phone call away. http://p.sf.net/sfu/theplanet-com _______________________________________________ Webware-discuss mailing list Webware-discuss-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/webware-discuss ------------------------------------------------------------------------------ The Planet: dedicated and managed hosting, cloud storage, colocation Stay online with enterprise data centers and the best network in the business Choose flexible plans and management services without long-term contracts Personal 24x7 support from experience hosting pros just a phone call away. http://p.sf.net/sfu/theplanet-com _______________________________________________ Webware-discuss mailing list Webware-discuss-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/webware-discuss