Student Reviews
( 5 Of 5 )
1 review
Video of Cookie less sessions in asp.net Part 63 in ASP.net course by kudvenkat channel, video No. 63 free certified online
Text version of the video
http://csharp-video-tutorials.blogspot.com/2012/11/cookie-less-sessions-in-aspnet-part-63.html
Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation1
Slides
http://csharp-video-tutorials.blogspot.com/2013/08/part-63cookieless-sessions-in-aspnet.html
All ASP .NET Text Articles
http://csharp-video-tutorials.blogspot.com/p/free-aspnet-video-tutorial.html
All ASP .NET Slides
http://csharp-video-tutorials.blogspot.com/p/aspnet-slides.html
All Dot Net and SQL Server Tutorials in English
https://www.youtube.com/user/kudvenkat/playlists?view1&sortdd
All Dot Net and SQL Server Tutorials in Arabic
https://www.youtube.com/c/KudvenkatArabic/playlists
By default sessions use cookies. The session-id is stored as a cookie on the client computer. This session-id, is then, used by the web-server to identify if the request is coming from the same user or a different user.
Some of the users, does not like websites writing information to their computers. So it is very common for, users to disable cookies. If that is the case, then websites using cookies, to manage sessions may not work as expected. However, to overcome this problem, cookieless sessions can be enabled. To enable cookieless sessions, set cookieless"true" in web.config
When cookieless sessions are enabled, the session-id is part of the URL and is sent back and forth between the client and the web server, with every request and response.
The web server, uses the session-id from the URL, to identify if the request has come from the same user or a different user.
For cookieless sessions to work correctly, relative URL's must be used in the application, when redirecting users to different webforms.