The VB.NET application I’m currently migrating uses the My.Settings object for storing/recalling user settings; of course this cannot work 1:1 in a web application. What is the recommended way to accomplish this / migrate existing settings use to Wisej.NET? I was not able to find any info in the documentation; sorry if I have overlooked it and ask stupid questions here; I’m not very experienced with web development.
Hi Robert,
You can simulate the same process by using Cookies or LocalStorage.
You basically have to handle your session management, the best practice would be to use LocalStorage for persistence.
The APIs are documented in our API Docs, For LocalStorage please use Application.BrowserStorage and Application.Cookies for using Cookies.
Best,
Alaa
Please login first to submit.