D
Duppypog
I'm using asp.net with an Access database. I have a field in the table
named "dtLastUpdated" which contains a date-time stamp when the record was
added to the database. I want to display just the lasted date/time in a
label on the page.
I created a Repeater and used the following SQL statement:
Dim strSQL As String = "SELECT Max(tblInmateLoc.dtLastUpdated) AS
theLastUpdated FROM tblInmateLoc"
ASP.NET does NOT like this sql. What am I doing wrong??
I'm REALLY new at this, so this may not have been the best approach - if you
know a better one, I'd love to hear it!
Thanks much,
Lynnette
named "dtLastUpdated" which contains a date-time stamp when the record was
added to the database. I want to display just the lasted date/time in a
label on the page.
I created a Repeater and used the following SQL statement:
Dim strSQL As String = "SELECT Max(tblInmateLoc.dtLastUpdated) AS
theLastUpdated FROM tblInmateLoc"
ASP.NET does NOT like this sql. What am I doing wrong??
I'm REALLY new at this, so this may not have been the best approach - if you
know a better one, I'd love to hear it!
Thanks much,
Lynnette