Most reliable way to check the technology used to build the website?

Associate
Joined
6 Jan 2006
Posts
1,024
Location
Midlands
Hi,

Is there a reliable way to check what web technology is used to build the site im viewing?

Looking at the page extension might not always be reliable as it can changed i.e. friendly urls.

Thanks
 
It's hard to tell sometimes, without having a nose around the souce code. What site are you having probs with?
 
Yep, the source code will always give you clues as to what's been used, both in terms of software and technologies/languages.

Care to share the URL so we can have a nose...?
 
There aren't that many commonly used methods really.
That said, I'm with Jester, I don't think there is any way to know for certain.

asp.net though always has a viewstate.
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="******" />
 
There aren't that many commonly used methods really.
That said, I'm with Jester, I don't think there is any way to know for certain.

asp.net though always has a viewstate.
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="******" />

That's not really reliable either, you can (and quite a few people do) disable viewstate in asp.net. Plus asp.net mvc doesn't use it :p
 
That's not really reliable either, you can (and quite a few people do) disable viewstate in asp.net. Plus asp.net mvc doesn't use it :p
Disabling viewstate doesn't get rid of the hidden field, it just makes the contents much smaller, but yes, MVC doesn't use it.

asp.net though always has a viewstate.
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="******" />
It'll only have the viewstate field if the page includes an asp.net server side form (<form runat="server"> tag), without it there'll be none of the extra asp.net hidden fields or javascript includes output.
 
Back
Top Bottom