J
Joel Barsotti
In asp3, you could set a multivalue cookie by doing something like this
Response.Cookies("login")("user") = Session('user');
Response.Cookies("login")("password") = Session('password');
Response.Cookies("login")("version") = Application('cookieVersion');
I can't seem to find a way to do anything similiar with the HttpCookie
object, is there something that I'm missing or do I need to manage a cookie
for each value I want to set these days?
Response.Cookies("login")("user") = Session('user');
Response.Cookies("login")("password") = Session('password');
Response.Cookies("login")("version") = Application('cookieVersion');
I can't seem to find a way to do anything similiar with the HttpCookie
object, is there something that I'm missing or do I need to manage a cookie
for each value I want to set these days?