user3090591
user3090591

Reputation: 21

Microsoft CRM 2013 Webforms or MVC

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

Answers (2)

Henk van Boeijen
Henk van Boeijen

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

Darren Lewis
Darren Lewis

Reputation: 8488

It's a combination of WebForms, HttpHandlers, HttpFilters and AJAX.

Upvotes: 0

Related Questions