ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T04:37:58Z http://stackoverflow.com/feeds/question/99056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom 8 ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom public static 2008-09-19T02:47:15Z 2009-10-30T18:41:53Z <p>Hi,</p> <p>If given the choice, which path would you take? 1. asp.net webforms + asp.net ajax</p> <p>or</p> <ol> <li>asp.net mvc + ajax framework of your choice (jquery, yui, prototype, etc).</li> </ol> <p><b>Focus point: Are their any limitations to #1, or hurdles since it is less 'free/open'</b></p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/99065#99065 2 Answer by FlySwat for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom FlySwat 2008-09-19T02:49:02Z 2008-09-19T04:57:39Z <p>I love webforms, but ASP.NET AJAX is a pile of crap.</p> <p>I prefer to use WebForms + custom HTTPHandlers handling the server side of any AJAX calls.</p> <p>Heh, downvoted...</p> <p>ASP.NET AJAX Is a pile of crap because a callback requires the entire page class to be reinstantiated, you aren't calling a single method, you are rebuilding the entire page on the server everytime.</p> <p>Also, UpdatePanels return the entire page, only the section in the update panel is popped in, its a total waste of bandwidth.</p> <p>I understand why its done this way, because WebForms controls can't really be easily other ways, but it still is really lousy.</p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/99071#99071 0 Answer by Quintin Robinson for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom Quintin Robinson 2008-09-19T02:50:33Z 2008-09-19T02:50:33Z <p>I've used asp.net winforms with ajax.net as well as prototype/ext/jquery. I guess something to consider is the goal of the site.. MVC is a popular pattern. I can't say anything against ASP MVC because I haven't had a chance to use it, but I want to make sure you know you are not limited to just ajax.net if you chose webforms.</p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/99173#99173 2 Answer by Giorgio Galante for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom Giorgio Galante 2008-09-19T03:07:27Z 2008-09-19T03:07:27Z <p>ASP.NET MVC is still in "Preview" form, and as such I wouldn't consider it until it matures. You can roll-your-own MVP pattern pretty easily without much plumbing. </p> <p>On the Ajax front, I'd say try to find libraries (commercial or otherwise) that do what you're looking for. The basics (Grids, trees, autocomplete textboxes, etc.) have been done to death. Don't Reinvent The Wheel.</p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/99247#99247 11 Answer by ben for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom ben 2008-09-19T03:20:36Z 2008-09-19T03:20:36Z <p>I've done both lately, I would take MVC nine times out of ten.</p> <ul> <li>I really dislike the implementation of the asp.net ajax controls, I've run into a lot of issues with timing, events, and debugging postback issues. I learned a lot from <a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/" rel="nofollow">http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/</a></li> <li>The asp.net project we used the MVP pattern <a href="http://www.codeplex.com/aspnetmvp" rel="nofollow">http://www.codeplex.com/aspnetmvp</a>, and the pattern worked great. However we ended up with a lot of code in the view because we were directly interacting with the server side controls (i.e a lot of gridview manipulations). This code is nearly untestable with the unit test frameworks. We should have been more diligent about keeping code out of the view, but in some instances it was just easier and less messy.</li> </ul> <p>The one time I would choose using asp.net forms development would be to use the gridview control. We are using jquery for our javascript framework with MVC and have not yet found a very good gridview like control. We have something that is functional, but the amount of time we have sunk into learning, tweaking, and debugging it vs using asp.net server side controls has been substantial. One looses all of the nice widgets Microsoft provides out of the box doing non asp.net form development. The loss of those widgets is freeing, and scary at the same time when you first start.</p> <p>At the end of the day I'm happy we are doing MVC development. My team and I have learned a new framework, (we were only asp.net developers before), and have gotten our hands dirty with html and javascript. These are skills we can take onto other projects or other languages if we ever need to.</p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/99254#99254 1 Answer by nbirkes for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom nbirkes 2008-09-19T03:21:54Z 2008-09-19T03:21:54Z <p>When I am designing a site one of the big things I prefer is the DRY principle. IMO ASP.NET MVC is much more dry than web forms. </p> <p>I have recently made the move from webforms to MVC and I hope I never have to go back!</p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/99608#99608 0 Answer by sontek for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom sontek 2008-09-19T04:19:16Z 2008-09-19T04:19:16Z <p>Webforms with ASP.NET Ajax is <em>heaven</em>. The integration between the 2 is just amazing and feels so natural to work with.</p> <p>Using webforms instead of mvc will give you the ability to utilize the lifecycle to develop very good and re-usable controls. </p> <p>But I still like to add a little jQuery into the mix for traversing the dom and adding animations, I just like to use asp.net ajax to get the integration with the server side.</p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/342723#342723 0 Answer by mdarnall for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom mdarnall 2008-12-05T02:17:05Z 2008-12-05T02:17:05Z <p>I agree that asp.net ajax UpdatePanels are not an ideal solution. </p> <p>We have avoided using them and instead have been using the client-side libraries to do any communication with the server. I do like what I saw at PDC about the features coming in asp.net ajax 4.0 with declarative components and client-side templating - very nice! Combining JQuery with the existing libraries provides quite a bit - and I have questioned using JQuery exclusively instead given it's much smaller footprint and it's ability to do a lot of the same things as the asp.net ajax client library.</p> <p>As far as the server stack - I haven't used MVC yet, but we have had success using a home-rolled MVP approach using webforms. </p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/356584#356584 -2 Answer by Mike for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom Mike 2008-12-10T16:02:11Z 2008-12-10T16:02:11Z <p>The concept behind MVC is great, but be prepared to loose virtually all the functionality of all the server controls you've used for so many years. I've only looked at the MVC implementation for about a week now, but the page lifecycle and view state are gone so these controls no longer function properly.</p> <p>I was also stunned to find a number of examples containing a lot of logic code in the markup. That's right, 'if' and 'foreach' statements in the aspx files -- a horrible step backwards imho. I was very happy to leave classic asp behind but in the current implementation of the asp.net mvc pattern you're back to code in your markup, the need to use helpers everywhere, and the lack of virtually any useable server controls.</p> <p>If you're starting a new project now I'd recommend sticking with asp.net webforms and make use of a the built in asp.net ajax, the toolkit, and jQuery as needed. The asp.net ajax implementation may not be the absolute best, or most efficient implementation, but unless you're getting a million uniques on day 1 or your server is a commodore vic 20 the performance hit isn't going to be that noticeable.</p> <p>This of course does depend on your project size. If you're starting a 5 year Enterprise level application that expect millions of page views, UpdatePanel might not cut it, but if you're building an average site, throwing up a prototype, or just need to get moving fast, asp.net ajax works perfectly fine and has an extremely low learning curve.</p> <p>And to be clear, the entire page is absolutely not returned every time an ajax call is made. /Only/ the content for the panel that needs to be updated is sent across the wire. Any http monitor will prove this point. Yes, the page /lifecycle/ is performed, but knowing that you can can build fairly efficient asp.net ajax applications. </p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/520874#520874 1 Answer by dynback.com for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom dynback.com 2009-02-06T16:03:56Z 2009-02-06T16:03:56Z <p>If you need update panel, I suggest you to use open source and lite MagicAjax or ComfortASP. If you need framework helps developing custom ajax, I suggest jQuery.</p> http://stackoverflow.com/questions/99056/asp-net-webforms-asp-net-ajax-versus-asp-net-mvc-and-ajax-framework-freedom/1651600#1651600 0 Answer by Mike for ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom Mike 2009-10-30T18:41:53Z 2009-10-30T18:41:53Z <p>Don't let people fool you into thinking that it is a clear cut choice. You can get the best of both worlds. My approach is to create an MVC project, but instead of adding views, add standard asp.net pages, but change the code behind to inherit from MVC.ViewPage like so:</p> <pre><code>public partial class SamplePage : System.Web.Mvc.ViewPage { protected void Page_Load(object sender, EventArgs e) { } } </code></pre> <p>If you confine yourself to the single form tag (with runat="server") in the code in front, then you have full code behind access to your standard asp.net server controls. This means you get full server side control of the presentation (eg. using databinding and repeaters) without having to do that old ASP-style code weaving.</p> <pre><code> protected void Page_Load(object sender, EventArgs e) { IObjectDefinition instance = (IObjectDefinition)ViewData["definition"]; _objectName.Text = instance.DisplayName;//textbox or label DataTable itemVals = new DataTable(); itemVals .Columns.Add("itemName"); itemVals .Columns.Add("itemValue"); IDictionary&lt;string, string&gt; items = (IDictionary&lt;string, string&gt;)ViewData["items"]; foreach (KeyValuePair&lt;string, string&gt; datum in items) { conditions.Rows.Add(new object[] { datum.Key, datum.Value}); } _itemList.DataSource = itemVals;//repeater _itemList.DataBind(); } </code></pre> <p>The post for any control does not post back to the page, but to the controller. If you remember to use the name property on your server controls then they end up in the FormControls collection for access to your page variables as per standard MVC.</p> <p>So what do you get?:</p> <ul> <li>full server side control of presentation your code in front is purely HTML and asp.net server control tags </li> <li>full separation of concerns - the page does presentation only, and all orchestration and marshalling is done in the controller (rather than asp.net style in the page) </li> <li>full MVC testability</li> <li>No html code weaving</li> <li>You can tunr view state off and reduce page bloat</li> </ul> <p>What do you lose?</p> <ul> <li>Once again you are confined to one form per page if you want to use only server controls</li> <li>You may need to manually specify postback targets for buttons and the form</li> <li>You once again have 2 files for your presentation</li> </ul> <p>Oh, and for AJAX - jQuery definitely. Making a request to a controller method that returns a JsonResult really simplifies things.</p>