L
Leentje®
hi,
i'm trying to determine if a record is empty
and when it's not, it has to show that record
to test, I put three X's in the code
the content of rs("opmerking") isn't shown
but the three X's are there
Does someone know why ?
Here is my code:
<%
While not rs.EOF
If not rs.EOF then
%>
<tr>
<td><% If Not Len(rs("opmerking")) = 0 Then %>
<br><%=rs("uitgevoerd")%>XXX
<% End If %></td>
</tr>
<%
rs.MoveNext
End If
Wend
%>
I've all ready tried this:
<% If Not Len(rs("opmerking")) = "0" Then %>
without any result
and I've all ready tried this:
<% If not(isNull(rs("opmerking"))) Then %>
<br><%=rs("opmerking")%>XXX
<% End If %>
the three X's are there
but the content of rs("opmerking") isn't there
who can help me?
thanks
Leentje
i'm trying to determine if a record is empty
and when it's not, it has to show that record
to test, I put three X's in the code
the content of rs("opmerking") isn't shown
but the three X's are there
Does someone know why ?
Here is my code:
<%
While not rs.EOF
If not rs.EOF then
%>
<tr>
<td><% If Not Len(rs("opmerking")) = 0 Then %>
<br><%=rs("uitgevoerd")%>XXX
<% End If %></td>
</tr>
<%
rs.MoveNext
End If
Wend
%>
I've all ready tried this:
<% If Not Len(rs("opmerking")) = "0" Then %>
without any result
and I've all ready tried this:
<% If not(isNull(rs("opmerking"))) Then %>
<br><%=rs("opmerking")%>XXX
<% End If %>
the three X's are there
but the content of rs("opmerking") isn't there
who can help me?
thanks
Leentje