Answer Posted / chandra prakash
You can set the cookieless setting to one of the values defined by the HttpCookieMode enumeration,
as described
1)UseCookies - Cookies are always used, even if the browser or device doesn’t support cookies or they are disabled. This is the default. If the device does not support cookies, session information will be lost over subsequent requests,
because each request will get a new ID.
2)UseUri - Cookies are never used, regardless of the capabilities of the browser or device. Instead, the session ID is stored in the URL.
3)UseDeviceProfile- ASP.NET chooses whether to use cookieless sessions by examining the BrowserCapabilities object. The drawback is that this object indicates what
the device should support—it doesn’t take into account that the user may have disabled cookies in a browser that supports them.
4)AutoDetect- ASP.NET attempts to determine whether the browser supports cookies by attempting to set and retrieve a cookie (a technique commonly used on the Web). This technique can correctly determine whether a browser supports
cookies but has them disabled, in which case cookieless mode is used instead.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Why should i prefer JSP over asp.net or any other web development language..??
What is the part of url?
How do you do client-side validation in .net? How to disable validator control by client side javascript?
What are sessions used for?
Explain the asp.net mvc folder conventions? : asp.net mvc
What is asp.net caching?
What are the disadvantages of view state?
What is HTTPModule and HTTPcontext? What is the use of each?
What are the data controls available in asp.net?
What are cookies in asp.net?
9. Why should we hire you over the others waiting to be interviewed?
What is route in web api?
What is user control in asp.net?
How can you pass multiple complex types in Web API?
Can we override the enablepartialrendering property of the scriptmanager class?