Disabling cookies for one page in an ASP.Net site
I want to turn off cookies in one page of my ASP.Net site. How can I Do that
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Suthish NairPosted Nov 6, 2011, 8:59 AM
Kunal NaikPosted Nov 4, 2011, 2:05 AM
Use Cookie.Discard property and set cookie state false in your web.config file.
And for particular page, set EnableSessionState="False" in pageredirective of that page.