Quizzes & Puzzles2 mins ago
html/java help please!
4 Answers
is there a code that i can put in my web page which tells the viewer when the page was last updated?
Answers
Best Answer
No best answer has yet been selected by ~Vulpine~. Once a best answer has been selected, it will be shown here.
For more on marking an answer as the "Best Answer", please visit our FAQ.If you are using ASP through IIS
On the Server side script you can use the
Session & Response Objects
The Session Object has a collection of objects/items, one of them (off the top of my head) actually has a property of LastUpdated
If you run in to problems with cache the following may help
Response.ExpiresAbsolute - Sets a date/time when the
cached page on the client will expire
Response.Expires - Sets how long (minutes) before the page expires on the client
Someone correct me If my memory fails
Hope this helps
On the Server side script you can use the
Session & Response Objects
The Session Object has a collection of objects/items, one of them (off the top of my head) actually has a property of LastUpdated
If you run in to problems with cache the following may help
Response.ExpiresAbsolute - Sets a date/time when the
cached page on the client will expire
Response.Expires - Sets how long (minutes) before the page expires on the client
Someone correct me If my memory fails
Hope this helps