|
<%
'This code was generated by SavageIdeas. All rights are reserved.
'Please use this code On any web site but please give credit where
'credit is due. I Do Not warrant this code against any problems it
'may cause you or your web site. Happy coding!
if Weekday(date()) = 1 Then
Response.Write("Sunday")
Else if Weekday(date()) = 2 Then
Response.Write("Monday")
Else if Weekday(date()) = 3 Then
Response.Write("Tuesday")
Else if Weekday(date()) = 4 Then
Response.Write("Wednesday")
Else if Weekday(date()) = 5 Then
Response.Write("Thursday")
Else if Weekday(date()) = 6 Then
Response.Write("Friday")
Else if Weekday(date()) = 7 Then
Response.Write("Saturday")
End if
End if
End if
End if
End if
End if
End if
Response.Write(", ")
Response.Write(MonthName(month(date())))
Response.Write(" ")
Response.Write(day(date()))
Response.Write(", ")
Response.Write(year(date()))
%>
|