I am trying to determine whether a company has websites built with ASP.NET MVC in their portfolio. Is there a reliable way of determining that without asking them assuming that I can visit the website in question in my browser? This might seem simple, but I wasn't able to find this information online. I would think that the lack of viewstate related stuff in the HTML source and the noun-verb URL structure would be good indicators. Are there any other indicators?
There's absolutely no reliable way. Routing makes things even worse, you can't even say it's ASP.NET other than probably looking at the HTTP headers sent by the web server and look for indication but it's not reliable.
But here's one heuristic you which is a strong indication of ASP.NET MVC:
form
tags in the same pageTalking about HTTP headers, here are some you may look for:
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
X-AspNetMvc-Version: 1.0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With