MySpace, Orkut, ASP.NET Forums, Microsoft.com, ...
ASP.NET has great caching and load balancing features that make it suitable for high load Web sites.
It's also a very flexible, well-designed framework. If you don't like part of it, or think its performance intensive for your high load application, you can just throw out that layer and replace it with your own. If you don't like WebControls and Pages due to its overhead, you are able to write your own HttpHandler
s.
Basically, I think ASP.NET MVC is going to be a better platform for high load and customized Web sites, since it can be more hand tuned (relative to ASP.NET pages that try to abstract away the resulting HTML, for good reasons) and works better with AJAX applications. WebControls and ViewState are two parts that usually face criticism that are pretty much gone away in MVC.
manpreet
Best Answer
2 years ago
That's the question... Do you think ASP.Net is a technology suitable for high-load sites? Do you know any populer sites -apart from stackoverflow, of course- built with this technology? Thanks.