Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying yo fetch LastModified date of url but it always returns Today(current date). I have checked many URLs but result is same. I tried both winform and web application.

Here is my code. Please help me to fix it.

  Uri myUri = new Uri(TextBox1.Text);
        // Creates an HttpWebRequest for the specified URL. 
        HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(myUri);
        HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
        if (myHttpWebResponse.StatusCode == HttpStatusCode.OK)
            Console.WriteLine("\r\nRequest succeeded and the requested information is in the response , Description : {0}",
                                myHttpWebResponse.StatusDescription);
        DateTime today = DateTime.Now;
        // Uses the LastModified property to compare with today's date. 
        if (DateTime.Compare(today, myHttpWebResponse.LastModified) == 0)
            Console.WriteLine("\nThe requested URI entity was modified today");
        else
            if (DateTime.Compare(today, myHttpWebResponse.LastModified) == 1)
                Console.WriteLine("\nThe requested URI was last modified on:{0}",
                                    myHttpWebResponse.LastModified);
        // Releases the resources of the response.
        myHttpWebResponse.Close(); 
share|improve this question
You can verify that this code is working correctly by using Fiddler (or your debugging proxy of choice) to see the server's "Last Modified" header for yourself. – David Oct 30 '12 at 21:27

2 Answers

up vote 2 down vote accepted

Per this explanation:

If your website is using plain HTML files, the "Last-Modified" is just the time stamp of the HTML file. If you have, however, dynamic pages that fetch data from a database for example, things are a bit more complex. The server does not know how you are generating your data or how the data can be changed from the last time it was loaded.

So, from most web servers these days, the "Last Modified" date is going to be the date that the page was rendered, because A) configuring the server to know whether the data has changed is extra work that many people won't do, and B) often the data has changed.

share|improve this answer

I've noticed that with web browsers the "Last Modified" date and time is always the second the page was loaded. I don't believe there is any way to ascertain the time the page was modified, as from my understanding it is not a file that is sent with a web request, but rather the contents of the file, as well as some headers (such as Content-Type).

I may, however, be incorrect.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.