Ask a Question related to ASP.NET General, Design and Development.
-
Joel Barsotti #1
multivalue cookies
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?
Joel Barsotti Guest
-
Cookies in FMS
In my application Flash Media Server 2 makes HTTP requests to retrieve configuration data. Page that is requestet sets some cookies. I was very... -
Modifying multivalue AD entries via LDAP
I would like to modify the Distribution Group membership for users and contacts within my domain via an LDAP enabled CF user form. I am able to... -
Cookies or other?
I have this thing I am working on just for fun but at the same time I want to prevent someone from just clicking all day... the only ones who can... -
cookies under php 4.06
okay, i know this is stupid, and i'm gonna kick myself when someone points out the obvious... i've just put a site online, and found the server's... -
No cookies
Hello, My XP Pro machine does not keep cookies. I've checked two things: A) The history is set to remember 20 days. B) The advanced tab in... -
Joel Barsotti #2
Re: multivalue cookies
yup that's exactly what I'm looking for
"S. Justin Gengo" <sjgengo@aboutfortunate.com> wrote in message
news:O9Nv9bcXDHA.1492@TK2MSFTNGP12.phx.gbl...> Joel,
>
> I think this is what you're looking for:
>
> Response.Cookies("login").Item("user") = Session('user');
> Response.Cookies("login").Item("password") = Session('password');
>
> Sincerely,
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> [url]www.aboutfortunate.com[/url]
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Joel Barsotti" <joelbarsotti@hotmail.com> wrote in message
> news:%23coPaMcXDHA.536@TK2MSFTNGP10.phx.gbl...> cookie> > 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>> > for each value I want to set these days?
> >
> >
>
Joel Barsotti Guest



Reply With Quote

