How to delete a cookie?

  • Thread starter Thread starter Boban Dragojlovic
  • Start date Start date
B

Boban Dragojlovic

I need the statement for deleting a permanent cookie that I created
earlier...

The .NET documentation refers to the .discard property, but the compiler
balks at that property

e.g. Response.Cookies("deleteME").discard()
 
I've never trusted the .remove method.
I always expire the cookie so I know the client will have
the expired data. I should take the time to research the
total affect of .Remove, but setting the date to now - 1
day works so well...
 
Back
Top