Previous | Home | Next |
How to know Last Modify Page using Java Script
Step 1. Written below code in your application.
<html> <body> This page was last modify: <br /> <script language="JavaScript"> document.write(document.lastModified) </script> <br /> <br /> View source to see how it is done </body> </html>
Step 2. Run the Application.

Previous | Home | Next |