MVC AJAX Form with Ajax.BeginForm() and jQuery Thickbox
A relatively common scenario you might want in your application is the ability for a user to click a link that pops up a little dialog to submit some information. For example, let's say you have this form where the user could click the "Contact this person" link: After clicking this link, it pops up the following dialog where the user can type in their message: Finally, once the user submits their message, it shows a little confirmation: This scenario can be implemented with MVC...