Saving View Data

I have a view with 3 dropdown controls that dynamically update with ajax as each is selected. I want to have a submit button to take the selections form all three controls, and save them in a database. What is the best way to retrieve these selections for storage via a controller/action initiated by the button? I am new to this, and am not able to visualize it yet.

You could just put them in a form and submit it. If you don’t want the page to reload, you can serialize the form using jQuery and submit it via ajax.

That works great, thanks!