tags:

views:

47

answers:

1

Hi,

Is there a standard technique for an ASP.NET application to check if a client's browser enables/supports cookies?

I'd appreciate any solution - even a less common one, as long as it's elegant enough.

10x!

+2  A: 

Well, the only way to check it is to try to set a cookie, then in the next request check if the browser sent it back.

Guffa