How can the session state be maintained in asp.Net, if the cookies are turned off in browser or cookieless="true" is added within sessionmode tags in web.config?
The following tag shows cookieless="true" in web.config.
<sessionState mode="InProc"
cookieless="true"
timeout="30"/>