megajam02 wrote:
Quote:
Shmooter,
I'd like to know the answer to this as well. Maybe this will bump
this topic someone will answer..
Chris |
Not knowing your server model, I'll give you the ASP version:
<table>
<%
'first declare a variable to hold the RS Value
Dim strRSValue
'begin loop code
Do While....
'assign variable during each loop
strRSValue = Trim(rsName.Fields.Item("Column2").Value)
'check if the RS Value has something to show
If strRSValue & "" <> "" Then
'then we have a value so show this row
%>
<tr>
<td><%=(rsName.Fields.Item("Column1").Value)%></td>
<td><%=(rsName.Fields.Item("Column2").Value)%></td>
<td><%=(rsName.Fields.Item("Column3").Value)%></td>
</tr>
<%
End If 'If strRSValue & "" <> "" Then
'end loop code
Loop
%>
</table>
HTH's
--
kindler chase
http://www.ncubed.com
Grooving with SuperInvoice
news://news.ncubed.com/support
n3 Support Group