Click here to Skip to main content
15,884,472 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
which large websites use asp.net technology? I only need the information about the names of this websites

What I have tried:

I don't know where i can find this information
Posted
Updated 18-Dec-20 10:05am

1 solution

If you're on Linux (or WSL Windows Subsystem for Linux[^]) you could try the curl command like the following against various sites:
curl -X HEAD -I <sitename>

curl -X HEAD -I codeproject.com

HTTP/1.1 301 Moved Permanently
Content-Length: 145
Content-Type: text/html; charset=utf-8
Location: https://www.codeproject.com/
Server: Microsoft-IIS/10.0
Date: Fri, 18 Dec 2020 21:01:49 GMT

CodeProject.com doesn't show them but sometimes you will see the additional headers that show:
X-AspNetMvc-Version: 5.2
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900