Print weekday names from Monday through Sunday


/ Published in: ASP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <% for i = 1 to 7 %>
  2. <%= weekdayname(i mod 7 + 1) %><br />
  3. <% next %>

Report this snippet


Comments


You need to login to view comments.