Just by opening the websites, you can't find the technologies except in some cases like having the extension like .php, .aspx.
Generally, these days, URL does not show those extensions.
In some cases, you can get some idea by inspecting the website. However, to get complete information, you need to use some third party tools or browser extensions.
with url only u cant say website is build in this technology. It can be combination of two or different technology as well. so you need to inspect element or view source code and check the link's Url and other things than only you will find proper solution.
as a developer i have that much knowledge, but my question is suppose a website www.zzz.com/index, then how can i know that this website is built with which technology?
All use HTML, JavaScript you can see if the website is responsive or usage of animations. You can detect PHP if the address bar contains .php, same for .NET using .aspx. Java runs in an applet which you can detect by right-clicking.
If the web server is configured properly, you can only see the first two and the last one.
If the webserver is well configured it might not be obvious to find that out. HTML they all use, Javascript is easy to detect because it's visible too. Java doesn't run without the JRE. PHP sometimes exposes itself, same for .NET, Apache and IIS.
Rijwan AnsariPosted Mar 2, 2023, 1:13 PM
Hi,
Just by opening the websites, you can't find the technologies except in some cases like having the extension like .php, .aspx.
Generally, these days, URL does not show those extensions.
In some cases, you can get some idea by inspecting the website. However, to get complete information, you need to use some third party tools or browser extensions.
Rajeev KumarPosted Mar 2, 2023, 10:47 AM
you can Check here to enter your domain name.
https://w3techs.com/sites
Akhil GargPosted Apr 24, 2015, 7:17 AM
with url only u cant say website is build in this technology. It can be combination of two or different technology as well. so you need to inspect element or view source code and check the link's Url and other things than only you will find proper solution.
Guest UserPosted Apr 24, 2015, 7:11 AM
Preeti AgrawallaPosted Apr 24, 2015, 6:58 AM
as a developer i have that much knowledge, but my question is suppose a website www.zzz.com/index, then how can i know that this website is built with which technology?
Akhil GargPosted Apr 24, 2015, 3:23 AM
.php is php
.do is struts java
like that
Shailesh BankarPosted Apr 24, 2015, 3:20 AM
e.g. URL of this page is-
http://www.c-sharpcorner.com/Forums/Thread/294617/ShowMessages.aspx?ThreadID=294617
This shows that website is built using asp.net technology. I hope, my post has solved your query.
Guest UserPosted Apr 24, 2015, 3:07 AM
If the web server is configured properly, you can only see the first two and the last one.
Preeti AgrawallaPosted Apr 24, 2015, 2:28 AM
Guest UserPosted Apr 23, 2015, 9:47 AM
If the webserver is well configured it might not be obvious to find that out. HTML they all use, Javascript is easy to detect because it's visible too. Java doesn't run without the JRE. PHP sometimes exposes itself, same for .NET, Apache and IIS.