E
etcnz
Just call me!
(But I'm probably old enough to be your mother.)
ETC
(But I'm probably old enough to be your mother.)
ETC
if you enter a date into a database in this format:
07/08/03
is there a way to make it display like this:
July 8, 2003
in a web browser when you used the DBRW?
-----Original Message-----
MS-Access only...
SELECT FORMAT([dbDATE], "mmm, dd, yyyy") AS NewDate FROM...
--
Stephen Travis,
Microsoft MVP - FrontPage
if you enter a date into a database in this format:
07/08/03
is there a way to make it display like this:
July 8, 2003
in a web browser when you used the DBRW?
thanks
.
Stu Pedasso said:right now, my "SELECT" statement looks like this:
fp_sQry="SELECT * FROM Results ORDER BY ID ASC"
Where do I add this formatting tag in this statement?
I use this to format ordinary numbers into currency:
<% If fp_rs("price11") <> 0 then %>
<%=FormatCurrency(fp_rs("price11"))%>
<% Else %>
isn't there a fix that is similar to change the date from
07/08/03 to July 8, 2003?
I don't understand where to put the formatting tag...
thanks
-----Original Message-----
MS-Access only...
SELECT FORMAT([dbDATE], "mmm, dd, yyyy") AS NewDate FROM...
--
Stephen Travis,
Microsoft MVP - FrontPage
if you enter a date into a database in this format:
07/08/03
is there a way to make it display like this:
July 8, 2003
in a web browser when you used the DBRW?
thanks
.