Currently, I am working on developing a basic MVC application in ASP .NET where I want to store all session user data on the client side. This means that every time the page is loaded, the variables reset to zero (e.g., points in a game). The intention is to then send this data to the server side (via POST) for processing before returning it back to the client. My goal here is to avoid using a database and enhance performance.
However, my concern lies in how to prevent this data from being tampered with prior to reaching the server. Apologies for any naivety as I am new to this concept.
Appreciate your insights!