Cookie vs HttpCookie

  • Thread starter Thread starter Ivan Demkovitch
  • Start date Start date
I

Ivan Demkovitch

Hi!

System.Net.Cookie class offers greater flexibility for working with Cookies
compare to System.Web.HttpCookie.

Is there any way to work with cookies thru System.Net.Cookie instead of
plain httpCookie???

TIA!
 
no.

System.Net.Cookie manages the client cookies if you .net code is going to
make a webrequest.
HttpCookieCollection manges the cookie received by the server (from a
HttpRequest), and that may be sent back to the client (thru a HttpResponse).

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top