View Single Post
  #3 (permalink)  
Old July 24th, 2003, 08:29 AM
savoym savoym is offline
Friend of Wrox
 
Join Date: Jun 2003
Posts: 119
Thanks: 0
Thanked 1 Time in 1 Post
Default



Thanks for the response. However, I am still getting a different column for the day it is not appending to the DATETIME column. Any suggestions?

Thanks.

Quote:
quote:Originally posted by pgtips
 Try this instead of your multiple If/ElseIf statements:
Code:
strWebLogActivityTable = strWebLogActivityTable & "<td align='left' bgcolor='#FFFF00' width='100'><b>" & trim(rs("access_date")) & "</b><br>"

strWebLogActivityTable = strWebLogActivityTable & _
    WeekDayName(Weekday(rs("access_date"))) & _
    "</td>"
Reply With Quote