Registry Access

Registry access is commonly used in WinForms applications. After migration all registry access is executed on the server´s registry only which certainly requires changing it. There are several different implementation strategies. They all start with encapsulating the registry access into method(s) and changing the target where the registry values are now stored and read from. This can be

  • A database table where you store each users relevants keys and values

  • A file per user on the server

  • Utilize Browser Storage to store user settings etc.

Last updated