Guys

I have a cookie problem. I set a cookie:

VB Code:
  1. response.cookies("agentcode") = section
  2. Response.Cookies("agentcode").Expires= Date + 30

and if I retrieve it straight away then it's there:

VB Code:
  1. response.write request.cookies("agentcode")
  2. response.end

However I then use response.redirect to send it to another page then I try to retrieve the cookie at the very top of that page and it's empty.

I've tried this on a few machines and different browsers.

Any ideas?!