[tt]
I've been looking at this piece of code for about 15 minutes and I can't find where the problem is and why my field is not looping
I need another pair of eyes
<select name="supervisoremail" size="1">
<option value="supervisoremail">Your supervisor
email</option>
<%
While (NOT rsDepartments.EOF)
%>
<option value="<%=(rsDepartments.Fields.Item("email"
.Value)%>" ><%=(rsDepartments.Fields.Item("email"
.Value)%></option>
<%
rsDepartments.MoveNext()
Wend
If (rsDepartments.CursorType > 0) Then
rsDepartments.MoveFirst
Else
rsDepartments.Requery
End If
%>
</select>
***********************
All I'm getting to display is:
Your supervisor
email
I've been looking at this piece of code for about 15 minutes and I can't find where the problem is and why my field is not looping
I need another pair of eyes
<select name="supervisoremail" size="1">
<option value="supervisoremail">Your supervisor
email</option>
<%
While (NOT rsDepartments.EOF)
%>
<option value="<%=(rsDepartments.Fields.Item("email"


<%
rsDepartments.MoveNext()
Wend
If (rsDepartments.CursorType > 0) Then
rsDepartments.MoveFirst
Else
rsDepartments.Requery
End If
%>
</select>
***********************
All I'm getting to display is:
Your supervisor
[tt]"A Successful man is one who can build
a firm foundation with the bricks
that others throw at him"
[/tt]
a firm foundation with the bricks
that others throw at him"
[/tt]


