J
|
Jane 12/15/2008 |
Hi, |
W
|
wisdom2009 author 12/15/2008 |
I don't want to sort i just want display a filed on the top of the page as last update. |
|
pbunyon99 12/15/2008 |
I found this code snippet on the forum a while back. |
W
|
wisdom2009 author 12/17/2008 |
That works. |
J
|
Jane 12/18/2008 |
Hi, 'get run date set rstmp=Server.CreateObject("ADODB.Recordset") rstmp.Open "Select [As of Date] from dbo.Lookup Group by [As of Date]",dbconnection if not rstmp.eof then Response.Write rstmp(0) end if rstmp.close : set rstmp=nothing |
W
|
wisdom2009 author 12/20/2008 |
Fantastic, Thank you so much it works fine. |