tags:

views:

108

answers:

1

Lets say its just for a simple website with pages such as Home, About, Contacts, etc..

+9  A: 

i wouldn't say you need asp for that. if its really only "Home, About, Contacts", you might not need php either ;). plain html might be enough

kgb
+1 - if speed is the only consideration, you'll be hard pressed to beat serving up static HTML files. Whatever scripting language you use, it ultimately has to do some processing and result in HTML hence adding some overhead
Macros
ofcourse you can do it in plain HTML but that is not my question.what i need to know is the comparison between the two technologies in terms of performance(Just a simple loading of page. Not so complicated). PHP vs ASP.NET MVC and IIS vs Apache Web Server.. Im not familiar with PHP page life cycle..
Fleents
if you compare page load times, you should compare web servers: iis/apache/nginx, not scripting technologies. in that case i would say nginx+php is going to be fastest.
kgb