Link to home
Start Free TrialLog in
Avatar of cesemj
cesemj

asked on

How can I insert a space bewteen date and time syntax on a asp page.

Hello,

Platform: Dreamweaver
page type: asp

When I use the following code, <%= FormatDateTime(Date, 1)%> , <%=time()%>, I get Monday, April 30, 2007,11:33 AM with no space between the year and time.  I insert a coma between the date and time and it looks ok.  
ASKER CERTIFIED SOLUTION
Avatar of WMIF
WMIF

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cesemj
cesemj

ASKER

Thank you
<%= FormatDateTime(Date, 1)%> &nbsp; <%=time()%> I removed the comma and the semicolon did the trick.  Thank you.