<select size="1" name="player<%Response.Write (m) %>">
<%Do While NOT rsPlayerProfiles.EOF%>
<option value="<%Response.Write (rsPlayerProfiles("ID"))%>"><%Response.Write (rsPlayerProfiles("PlayerNickName"))%></option>
<%rsPlayerProfiles.MoveNext%>
<%loop%>
</select>
It is supposed to make a dropdown menu appear. It does it first time and then doesn't do it again after that. Help?
