• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

sending dropdown selected values using querystring

 
Ranch Hand
Posts: 189
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have used javascript code for displaying the selecting the multiple values and displaying them

but i want that it should be accessible to another webpage through querystring and displaying it in the texbox in that page .how to do this ?
 
Ranch Hand
Posts: 547
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is javascript/html question. There is another forum for this (unless you are interested on the Servlet/JSP/Server part of this).

In general you will need to submit the form enclosing those dropdown (and other) form elements. The values are sent (depending on the forms action attribute) either as POST (values not visible in quetry String) or as GET (values in query String) to the URL defined in the action attribute of the form.


Pascal
[ November 30, 2006: Message edited by: pascal betz ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic