I would like to add a CSS class (.month) to the following ASP line:
tmpHTML = tmpHTML & "<a href=""?EventDate=" &
Server.URLEncode(DateAdd("m",-1, EventDate)) & """>«</a>" &
CurMonthName & "," & " "
How would I place the class in the line? I tried the following, but it didn't work.
tmpHTML = tmpHTML & "<a href=""?EventDate=" &
Server.URLEncode(DateAdd("m",-1, EventDate)) & class=""month"" &
""">«</a>" & CurMonthName & "," & " "
Thanks for any help.
-D-