So, I have been programming ASP.NET MVC for a long time with jQuery and am very comfortable working with the DOM for AJAX and programming interactivity.
However, I recently started a new job that uses ASP.NET Web Forms, and I was wondering if there was any way to rely on using jquery for all of my AJAX and DOM manipulations, rather than using POST calls.
I would love to use ASP.NET MVC, but I was hoping to find a good middle ground. I want to have jQuery, plugins, and my own client code to handle DOM manipulations after the page loads.
I thought I could use simple controls, such as repeaters, to write out my HTML. I guess I want to avoid all the bloated code that adds the web form engine and use an unobtrusive approach to more conveniently share the interface with the back server.
Hope my question makes sense.
Thanks!
source share