I'm not sure how you turn off cookies for a single page
Here's how you can turn cookies off for your entire ASP.NET application:
Open your web.config file and set cookieless to TRUE.
Example:
<sessionState
mode="InProc"
cookieless="true"
timeout="20"
/>
- A.Kahtava
|