Why is a cookieless session implemented on a mobile Web application?
Why is a cookieless session implemented on a mobile Web application?
Rating:
A cookieless session is implemented on a mobile Web application to ensure that a mobile Web site is compatible with mobile devices of several users. Since, many mobile devices do not accept cookies, cookieless sessions are enabled to maintain session state of each user. The cookieless session is implemented by placing the
<system.web>
<sessionState mode="InProc" cookieless="true"
timeout="30"/>
</sessionState>
</system.web>
</configuration>
Rating:
Other articles
- MCTS 70-528-CSHARP Short Notes: Exam Passing Tips
- How to create an ASP.NET login page for a user?
- What is the XmlValidatingReader class?
- What are the advantages and disadvantages of storing information on the server?
- What is a content page?