Tag: web form control MVC
-
Differences MVC versus WebForms
Rule of thumb for differences between ASP.NET MVC versus ASP.NET WebForms 1 : If it is a Web Form Control ( asp:textbox,asp:gridview) it does not work in MVC. Period. 2. Use DisplayTemplates/EditorTemplates/PartialView/HtmlHelpers and some jquery (or your favorite javascript framework) magic. See http://msprogrammer.serviciipeweb.ro/2010/05/30/mvc-helper-templates .3 Security is NOT on web.config ( location ). Security is on…