I am new to ASP and currently reading ASP for Dummies and ASP 3.0 in 21 days so please be patient.
I have some ASP script that I wrote were I am trying to produce the following:
Today is Wednesday June 27 but currently I get
Today is WednesdayJune27
How do I get the correct spacing?
Here is the snippet of code I wrote:
<p>Today is <% =WeekdayName(Weekday(Date)) %>
<% =MonthName(Month(Date)) %>
<% =Day(Date)%> </p>
I have some ASP script that I wrote were I am trying to produce the following:
Today is Wednesday June 27 but currently I get
Today is WednesdayJune27
How do I get the correct spacing?
Here is the snippet of code I wrote:
<p>Today is <% =WeekdayName(Weekday(Date)) %>
<% =MonthName(Month(Date)) %>
<% =Day(Date)%> </p>