<%@ Language=VBScript %>
<% Option Explicit %>
<%
'Read in the WeekDays Array
Dim strWeekDays
strWeekDays = Request("WeekDays")
'strWeekDays is a comma-delmited list of values
'So we can split on the comma to create an array!
Dim aWeekDays
aWeekDays = split(strWeekDays, ",")
Dim iLoop
For iLoop = LBound(aWeekDays) to UBound(aWeekDays)
aWeekDays(iLoop) = Trim(aWeekDays(iLoop))
Next
For iLoop = LBound(aWeekDays) to UBound(aWeekDays)
Response.Write aWeekDays(iLoop) & "
"
Next
%>