Mega Code Archive

 
Categories / C# Tutorial / Network
 

To see the date on which a web site was last modified

using System;   using System.Net;      class MainClass {      public static void Main(string[] args) {       HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://www.rntsoft.com");          HttpWebResponse resp = (HttpWebResponse) req.GetResponse();          Console.WriteLine("Last modified: " + resp.LastModified);          resp.Close();     }   }