How to create a server-side cookie using C#

  • Thread starter Thread starter raghavendra
  • Start date Start date
What exactly is a server side cookie? I know about HTTP cookies but they're
stored on the client, not server. You can create those with new HttpCookie
and send it to the client by adding it into the Cookies collection of your
HttpResponse object.

Jerry
 
Back
Top