I was wondering if it is safe to call a controller action from a javascript file and pass (say sensitive) parameters to it.
Say that the end-user makes a bet on something, and then the value of the bet will be sent to a controller action.
The bet itself is typed into a textbox on the page and javascript sends that value as a parameter to the action on a button click event.
Before the action is called, can the user manipulate his/her bet value AFTER clicking the button?
Thanks