Why is a cookieless session implemented on a mobile Web application?

Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.

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 session ID value into the URL for the specified mobile Web site. By default, ASP.NET session state is defined in the Machine.config file, which can be overridden in the Web.config file located in the Web application's root folder. Therefore, in the Web.config file, the cookieless attribute of the <sessionState> element node is set to true. For example:

<configuration>
   <system.web>
      <sessionState mode="InProc" cookieless="true"
      timeout="30"/>
      </sessionState>
   </system.web>
</configuration>


Rating:



Other articles

Click here to Article home

 
uCertify.com | Our Company | Articles | Privacy | Security | Contact Us | News and Press Release | uCertify India
MCSE: MCSA, MCTS, MCITP    JAVA Certification: SCJP, SCWCD Cisco Certification: CCNA, CCENT, A+, Network+, Security+
Oracle Certification: OCP 9i, OCP 10g, OCA 9i, OCA 10g CIW foundation    EC-212-32    CISSP    Photoshop ACE    Adobe Flash ACE
© 2008 uCertify.com. All rights reserved. All trademarks are the property of their respective owners.