Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Retrieving multiple values from a Select Box

Status
Not open for further replies.

dkn

Programmer
Oct 11, 2000
60
US
Hi,

I have a list of items that I want my users to be able to select multiple values from. I've set the list up no probs, and use the Multiple attribute to allow mulitple selections.

The question I have is how do I retrieve these values?.

Using the get method I get a querystring that looks like this in the address bar, where lstOutpost is the name of the Select box.


If I do a Outpost = request.querystring("lstOutpost") what value will be assigned to my variable Outpost?

Do I need to manually parse the querystring?...

How would it work using the Post method?

Any help greatly appreciated.

David :eek:)
 
i think that you must code your own querystring() method.
you can find a lot of method already made for you on the net (exemple :
Then on the method, you will see what it the return type.
Your variable Outpost will be initialised with the return type of the querystring method

quite simple Best regards,
Elise, XML girl X-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top