If you're trying to determine whether the browser supports cookies, you can
use the following statement from you ASPX page:
bool bSupportsCookies = Request.Browser.Cookies;
If you're trying to determine whether the client has their security settings
set to allow cookies, I don't know of a way to do that since that is a
client-side setting.