I want to know how to get last modified date of the webpage using c#...?
I tried the below code but I get only date as today
HttpWebRequest req =(HttpWebRequest)WebRequest.Create("http://www.codeproject.com/KB/cs/youmanager.aspx");
HttpWebResponse res =(HttpWebResponse) req.GetResponse();
DateTime abcd = res.LastModified;
Thanks in advance.