Reputation: 21
I have been wondering what technology Microsoft uses to build MS Customer 2011/ 2013? Are they using web forms or mvc?
Upvotes: 1
Views: 750
Reputation: 7918
Microsoft started development of Dynamics CRM on .NET Framework version 1.1. At that time MVC did not exist. CRM was gradually migrated to the newer framework versions (the most recent is v4.0).
The point is ASP.NET/WebForms and ASP.NET/MVC are based on very different architectures. Moving to MVC would require rewriting large parts of the application. Therefore, it is not surprising that version 2013 is still based on WebForms.
Upvotes: 1
Reputation: 8488
It's a combination of WebForms, HttpHandlers, HttpFilters and AJAX.
Upvotes: 0