
22-03-2004, 08:34 AM
|
|
Novice Webmaster
|
|
Join Date: Dec 2003
Location: subang jaya, selangor
Posts: 34
Rep Power: 0
|
|
u are using the codes generated by dreamweaver right?
try to avoid using those generated codes. i had bad experiences with them myself.
do this to view EVERYTHING in the table:
<table>
While not rsStudents.EOF
<tr>
<td>
'display everything you want
</td></tr>
rsStudents.MoveNext
Wend
ask if u don't understand aight?
|