17
Views
4
Comments
IF Any One Can Explain what Is The Purpose Of Using Session
Application Type
Traditional Web

purpose of using Session

2023-08-28 07-00-10
Paulo Torres
Champion

You can store in client side, no need to go to the server.

For example in screens when you filter you can and should use the searchkeyword in session, with this you can go forward and back and you don't lose what you insert in search input.

2021-08-12 11-00-27
Nordin Ahdi
 
MVP

Since the post is tagged with Traditional Web as app type, I assume we are talking about session variables. 

In that case your statement about storing search keywords client-side is incorrect. Session variables are actually stored server-side in key-value pairs.

Regards,

Nordin

2024-07-05 14-16-55
Daniël Kuhlmann
 
MVP
2022-12-05 07-28-20
Nihil Gujar

Use session variables to store data server-side in a key-value format.


When users log out of the application or shut all open browser windows, session variables are cleared.


Visit https://success.outsystems.com/Documentation/11/Reference/OutSystems_Language/Data/Handling_Data/Session_Variable

 for more information.


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.