I need to get a "Last Modified: XX/XX/XX" displayed on an ASP file that generates a table containing results from a database. Because this isn't possible in the current version of Active Service Pages I have decided to query the database to display the information I want.
Example: When a user updates the database (via a form
Example: When a user updates the database (via a form
HTML:
) a "date submitted" ( date() ) is recorded with the record in the same table. I then came up with a query to retrieve the most recent record submitted to the database, the SQL statement is as follows:
**********************************************************
SELECT Last(JobOpenings.DateSubmitted) AS LastOfDateSubmitted
FROM JobOpenings;
**********************************************************
I then display the results on the webpage just beside the statement "Last updated on" ******" That works fine. The issue lies in the query. Thes query does in fact select a record, but it is four days old,
Anyone have any suggestions?
Thanks in advance