My view has a chessboard.js chess board. The user makes one move and then clicks a submit button. I want my HttpPost method to retrieve this new board position and update it in my database.
I'm new to MVC and all previous examples that I have seen have utilized values entered into controls to update databases. My question is how do I update a row in a database when the user doesn't enter any values into a form control - they just make a move on a chessboard? (Once the player makes a move a FEN string is updated with the new board position. I just need to get that string into my database once they press the submit button)