I am using cookies, Like...
HttpCookie id = new HttpCookie("id");
id.Value = "2"
Response.Cookies.Add(id);
and i am using this cookies in a table
unique cookies productid
1 2 1
2 2 3
3 2 4
4 1 1
5 1 2
6 2 1
Now i want to process on browser close the data stored in the table having cookies value 2 in column(cookies) get deleted.
I mean after close of my browser tag
my table should be seen as
unique cookies productid
4 1 1
5 1 2
please help me