How to add/remove/replace LIST in cookies using C#
- by MKS
Hi Guys,
How can add/remove/replace LIST in cookies using C#.
//Declaring the List for image list
List<string> imageList = new List<string>();
foreach (FeaturedPromo promo in base.FeaturedPromos)
{
imageList.Add(promo.ImageHref);
}
In above code, I have got a list with all the Image HREF values in it, Now I want to add these values in cookies using C#, after that I can remove that item from cookies and also replace the value with other value of same item in cookies.
Please suggest!