I want to record the single cookie for maintain the quantity of a product and all product. how i can do this in c#.

are their any way to do this when i can check the existence of product in cookie. are someone have the code for it.

thanks

link|improve this question
1  
You didn't search too hard before landing here, did you? – bottlenecked Sep 6 '11 at 7:11
feedback

1 Answer

Creating a cookie:

HttpCookie cookie = new HttpCookie("name", "value");            
Request.Cookies.Add(cookie);

Getting the cookie value:

string cookie value = Response.Cookies["name"].Value;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.