'// Assumes your select box is named "selValue"
'// If using the POST method
Request.Form("selValue")
'// If using the GET method
Request.QueryString("selValue")
--
Regards
Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk
Keeping it FREE!
"vbMark" <> wrote in message
news:Xns957F8DB269F4Cnoemailcom@130.133.1.4...
> What I want to do is this:
>
> When the user submits the form his selections in the dropdown boxes will
be
> saved in a cookie.
>
> When he loads the page again the value saved in the cookie will be
> reflected in the dropdown boxes.
>
> I know how to do cookies but don't know how to reference controls. Can
> someone point me to or show me an example?
>
> Thanks!