How are you supposed to send the values to the site? How is the site recieving the values? If the site is just using Request("variable") to read the values, that sure is poor programming. The request collection reads from server variables, cookies, form data and querystring. It's safer to specify from where the data should be read. Sending the values as cookies is a bad solution, though. If the site is reading values from the Request collection on other pages, you might be causing errors on the site. If the same name is used as in the cookies, the value in the cookies will be read instead of the value in the form data or querystring. You should be trying to find out why you can't send the data using form data or querystring, rather than using cookies. --- b { font-weight: normal; }