Populate a select box from an array
This shows how To populate a Select box from an Array
Code
<%
dropdown = ""example1,example2,example3,example4""
%>
<Select Name=""drop"">
<%
list = Split(dropdown, "","")
For i = 0 To UBound(list)
%>
<Option value=""<%=list(i)%>""><%=list(i)%>
<%Next%>
</Select>
"![]()