Hi All,
With my current code the data displays as...how can I get the info in blue/bold (# of records) ?
Code:PartNo. - Desc (# of eq - 3) -Desc-EQ# -Desc-EQ# -Desc-EQ# PartNo.1 - Desc1 (# of eq - 2) -Desc1-EQ# -Desc1-EQ# ETC...Code:<% iRecCount = rs.RecordCount if iNumRecs <> -1 And iRecCount > iStartRec+iNumRecs-1 then iStopRec = iStartRec+iNumRecs-1 else iStopRec = iRecCount end if %> <% Dim strLastFLName %> <TABLE border="3" width=900> <col width=300><col width=50> <TR bgcolor="#6699CC"> <TD><B>Description</B></TD> <TD><B>EQNumber</B></TD> </TR> </CENTER> <% strLastFLName = "" do while not rs.EOF if i > iStopRec then exit do end if strCurrentFLName = rs("PartNo") strCurrentGrp = rs("Desc") If strCurrentFLName<>strLastFLName Then Response.Write("<tr bgcolor=#999999><td align=""left"" colwidth=""100"" colspan=""2""><font color=""white"">" & strCurrentFLName & " - " & strCurrentGrp & "</font></td></tr>") End If strLastFLName = strCurrentFLName i = i + 1 %> <% IF i Mod 2 = 0 THEN %> <TR bgcolor="#f0e68c"> <% ELSE %> <TR bgcolor="#FFFFCC"> <% END IF %> <TD align=left><%=rs("Desc")%> </TD> <TD align=right><%=rs("EQNumber")%> </TD> </TR> <% rs.MoveNext loop %>



LinkBack URL
About LinkBacks

...plzzz help
Bookmarks