How do you pass a parameter to another view screen without the user seeing it in the URL?
For example: I have a query screen that the user clicks on the table and is redirected to another screen, which is the screen that opens the information of the field that was clicked, in case it can be a code.
the url would look like this:
Step it by JS, like this:
window.location = "Index?pId=" + $($(this).find('td').get(0)).text();
My problem is that I will need to pass a parameter, to indicate whether the fields on the screen may or may not be enabled.
Passing it through the URL would leave application vulnerable to changes, how can I proceed?