With ASP.NET MVC, what is the preferred way to Ajaxify a simple form?

Posted by Swoop on Stack Overflow See other posts from Stack Overflow or by Swoop
Published on 2010-05-18T19:15:16Z Indexed on 2010/05/18 19:20 UTC
Read the original article Hit count: 167

Filed under:
|
|
|

I am trying to add a simple comments/message box to a web page. When the user enters the comment and hits submit, I would like to save this message to the database and add the comment to the list displayed on the page, without refreshing the entire page.

However, I am not sure of the best way to do that these days. I am using ASP.NET MVC 2. I have been trying to read up on using JQuery for this type of functionality, but I am having problems getting a full picture of the correct approach that isn't also out of date (i.e. it is using an preview version of MVC 1 or older version of JQuery).

I can either find snippets of different pieces without the information of how they work together, or the information appears to be quite dated and no longer valid.

Can someone point me in the right direction for something like this?

Ideally, I am looking for a simple example of the JQuery code, a snippet of any key differences in an HTML form from a normal post method, and the basic method used in the MVC Controller. I need something to help the lightbulb of understanding to turn on. :)

Any help would be greatly appreciated!!

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about asp.net-mvc-2