Help!
I can't figure out why this code is looping and crashing me!! 
I was told that it is looking to "MoveNExt" after it reached the EOF. But I don't see how. 
It goes into a fatal loop when it hits the "if/then/else" statement WITHIN the "While NOT Recordset1.EOF" statement.
Oh...my top 4 llines of code in the file are:
<% @Language VBScript %>
<% Option Explicit
Response.Buffer = True
%>
Please help!!??? 
<%
WHILE NOT Recordset1.EOF
%>
<tr>
<td width="20%" height="17"></td><%
if ChiSpu = 1 then %>
<td align="center" width="26%" Hieght="17">sometext</td>
<td align="center" width="26%" Hieght="17"></td>
<td align="center" width="26%" Hieght="17">sometext</td><%
Else %>
<td align="right" width="26%" eight="17"><%=(recordset1.fields.item("Name").value)%& gt;</td>
<td width="1%" height="17"></td><%Recordset1.movenext%>
<td align="center" width="5%" height="17" nowrap>Some Text</td>
<td width="1%" height="17"></td><%
If Recordset1.EOF = True then
ChiSpu = ChiSpu + 1
Else
ChiSpu = ChiSpu + 1 %>
<td width="31%" h eight="17"><%=(recordset1.fields.item("Name").value)%& gt;</td>
<td width="20%" height="17"></td><%
If Recordset1.EOF = True then
Else
Recordset1.movenext
End if
End If
End if
Response.Flush
Wend
%>
What is the problem???