RE: Title lines - 11/9/2001 20:08:00
It should probably look something like: (Sorry, I left a few things out!!)<!--#include file="_fpclass/fpdblib.inc"--> <% fp_sQry="SELECT * FROM myDB ORDER BY Vendor ASC" fp_sDefault="" fp_sNoRecords="No records returned." fp_sDataConn="myDSN" fp_iMaxRecords=0 fp_iCommandType=1 fp_iPageSize=0 fp_fTableFormat=False fp_fMenuFormat=False fp_sMenuChoice="" fp_sMenuValue="" fp_iDisplayCols=3 fp_fCustomQuery=False BOTID=0 fp_iRegion=BOTID %> <% DIM x x = 0 %> <!--#include file="_fpclass/fpdbrgn1.inc"--> <% IF x = 20 %> <tr> <td><b>Vendor</b></td> <td><b>Type</b></td> <td><b>Sku</b></td> <td><b>Product</b></td> </tr> <% x = x + 1 ELSE x = 0 END IF%> <tr> <td><b><%=FP_FieldVal(fp_rs,"Vendor")%></b></td> <td><b><%=FP_FieldVal(fp_rs,"Type")%></b></td> <td><b><%=FP_FieldVal(fp_rs,"Sku")%></b></td> <td><b><%=FP_FieldVal(fp_rs,"Product")%></b></td> </tr> <!--#include file="_fpclass/fpdbrgn2.inc"--> This is what I suspect it should look like. Have not tested this code for you so syntax may not be exactly correct. The stuff in bold is the stuff you should add to your DRW. The rest of the stuff should look similar to what is there already. Remember, you'll need to put the page on a diet for this to work...
|