Get server information from the url of website
Below dotnet code will get you some server information about a website it is hosted. Note that sever can mock or disable data it is provided.
WebClient wc = new WebClient();
string site = @"http://www.msdn.microsoft.com/";
[...]












