Reputation: 27396
I'm looking into microsoft's version of MVC as a framework for a site redesign that I'm about to begin.
I am not totally new to MVC, I worked on a java app using MVC. We used the DOJO javascript library to make asynchronous calls back to the actions to update views.
What are some of my choices to do the same in .net MVC?
I'd like an excuse to get my hands dirty with jQuery, is this a good one?
Upvotes: 1
Views: 184
Reputation: 4505
Sure you should go with JQuery..You have already experience in MVC, I think you will not take much time to understand JQuery.
Upvotes: 1
Reputation: 1923
JQuery is definitely useful for this. If you or your company has any 3rd party control such as the Telerik RadControls for ASP.NET you can give those a try too. I think they are free for beta right now.
However, the best starting point is always looking at code that already exists. There are also tons of examples of AJAX with MVC all over the net.
Go download the NerdDinner example that ScottGu, ScottHa etc. worked on for their book.
Upvotes: 3
Reputation: 17482
jQuery is one of the most widely used javascript frameworks used with ASP.Net MVC, also check out ExtJs. We use ExtJs at work and I think its been documented well and its very easy to use. The jQuery community is a lot bigger though so I would say its a safer bet
Upvotes: 1