Comment Re:After reading the FA ... (Score 2, Insightful) 478
I could not agree more, this guy basically goes out of his way to mention the fact that ASP.NET has a heavier object model and will thus use more memory without addressing at all the point of this model.
ASP.NET is a very different way of programming a web application that has significant advantages over many of the other platforms that exist. A ton of the work and overhead that goes into writing validation functions and other "plumbing" code in other web application frameworks is already done in ASP.NET. Also, the fact that form controls are created by objects means that you can easily create standardized controls that inherit from the built in WebForm objects and are customized for your application. Basically with ASP.NET it becomes much easier to encapsulate and reuse the code that you write for web presentation, which is certainly a good thing.
Having not worked much in PHP, I cannot say anything bad about it and have heard very good things about working in it. That being said, it just seems like criticizing ASP.NET for being slow due to its heavier object model is missing the whole point.
Of course I am not that surprised since is article is written by Oracle, and they spend significant time in it going on about how DB Vender Lock-in is a good thing. I think that shows where this authors motivations lie.
ASP.NET is a very different way of programming a web application that has significant advantages over many of the other platforms that exist. A ton of the work and overhead that goes into writing validation functions and other "plumbing" code in other web application frameworks is already done in ASP.NET. Also, the fact that form controls are created by objects means that you can easily create standardized controls that inherit from the built in WebForm objects and are customized for your application. Basically with ASP.NET it becomes much easier to encapsulate and reuse the code that you write for web presentation, which is certainly a good thing.
Having not worked much in PHP, I cannot say anything bad about it and have heard very good things about working in it. That being said, it just seems like criticizing ASP.NET for being slow due to its heavier object model is missing the whole point.
Of course I am not that surprised since is article is written by Oracle, and they spend significant time in it going on about how DB Vender Lock-in is a good thing. I think that shows where this authors motivations lie.