asp.netasp.net-mvcperformanceasp-classic

Which performs best: Classic ASP, ASP.NET WebForms or ASP.NET MVC?


i have recently converted a classic asp application to ASP.NET 3.5, but i feel that my Classic ASP version was a bit faster (i don't know may be buyers remorse).

So can you guys help me with this and let me know which one is faster, asp, asp.net or ASP.NET MVC.

I searched for this question on so and didn't find anything, if you find anything, please point to that question and mark my question as duplicate

Thank you guys.


Solution

  • Classic ASP will interpret the script for a page on every page request. ASP.NET will compile the code for the page once. ASP.NET will almost always perform better than classic ASP. ASP.NET MVC is simply a (better?) way to write ASP.NET applications.

    Also, in my oppinion the features ASP.NET is far superior to classic ASP. You should be able to spend fewer developer resources on creating a more complex website if you choose ASP.NET.