The replies I've received seem to make sense when I try to read in the querystring on the print page, but I can't get the querystring to work properly. Below is the code used to read in the company info from the database, along with the option for the user to select which companies information they would like to print. The querystring currently shows "print.asp?CustomerNumber= " (no value). Seems there should be some kind of loop?
<%
'Avoid starting record > total records
if clng(startRec) > clng(totalRecs) then
startRec = totalRecs
end if
'Set the last record to display
stopRec = startRec + displayRecs - 1
'Move to first record directly for performance reason
recCount = startRec - 1
if not rs.eof then
rs.movefirst
rs.move startRec - 1
end if
recActual = 0
Do While (NOT rs.EOF) AND (recCount < stopRec)
recCount = recCount + 1
If Clng(recCount) >= Clng(startRec) Then
recActual = recActual + 1 %>
<%
'set row color
bgcolor="#FFFFFF"
%>
<%
' Display alternate color for rows
If recCount mod 2 <> 0 Then
bgcolor="#F5F5F5"
End If
%>
<%
x_CustomerNumber = rs("CustomerNumber"

x_CustomerName = rs("CustomerName"

x_CustomerAddress = rs("CustomerAddress"

x_CustomerCity = rs("CustomerCity"

x_CustomerState = rs("CustomerState"

x_CustomerZip = rs("CustomerZip"

x_CustomerGrpCode = rs("CustomerGrpCode"

x_ID = rs("ID"

x_Print = rs("Print"

%>
<tr bgcolor="<%= bgcolor %>">
<td><font size="-1">
<% response.write x_CustomerNumber %>
</font></td>
<td><font size="-1">
<% response.write x_CustomerName %>
</font></td>
<td><font size="-1">
<% response.write x_CustomerAddress %>
</font></td>
<td><font size="-1">
<% response.write x_CustomerCity %>
</font></td>
<td><font size="-1">
<% response.write x_CustomerState %>
</font></td>
<td><font size="-1">
<% response.write x_CustomerZip %>
</font></td>
<td><font size="-1">
<% response.write x_CustomerGrpCode %>
</font></td>
<td><font size="-1">
<% response.write x_ID %>
</font></td>
<td>
<font size="-1">
<input type="checkbox" name="Print"<%if (x_Print)=true then%>
checked value="ON">
<%else%>
>
<%end if%>
</font></td>
</tr>
<%
end if
rs.MoveNext
Loop
%>
<tr bgcolor="#ffffff">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td><a target="_blank" href="print.asp?CustomerNumber=<%if Request.Querystring("Print"

=true then%><%=x_CustomerNumber%><%end if%>"><img src="images/printer.gif" border="0"></a></td>
</tr>
</table>
</form>