Hello
I am getting the following compilation error:
'BC30800: Method arguments must be enclosed in parentheses'.
The error refers to this script in a file called myDate.asp which I have in Solution Explorer:
<%
'Dim suffix As String
'Dim local As DateTime
Dim suffix, local local = DateAdd( "h", 8, Now() )
Select Case Day(local)
Case 1,21,31: suffix = "st"
Case 2,22: suffix = "nd"
Case 3,23: suffix = "rd"
Case Else: suffix = "th" End Select
Response.Write ("<p class=""show_date"">" & WeekdayName(Weekday(local)) _ & " " & Day(local) & "<sup>" & suffix & "</sup> " _ & MonthName(Month(local)) & "</p>")
%>
and this li ...
Go to the complete details ...