Rs.movenext
This is what I had:
</tr>
<tr>
<td height="10" colspan="5"></td>
</tr>
<% rs.movenext
count = count + 1
loop
%>
</table>
This displayed the items in one column. Then I did this:
<table border="1" width="94" id="table29">
<tr><td width="0"><% rs.movenext()
loop
%> </td>
</tr>
But that display the results side by side in the table and it keeps expanding.. I want to show 3 items across then loop back down to show the next 3...
Like this:
Item1 Item2 Item3
Item4 Item5 Item6
View Replies
how to make the recordset movenext when the user press next button or movepreviuos when user press move previous button.
In VB, we can directly use rs.Movenext and rs.moveprevious.In ASP, how to do it?
View Replies
View Related
I have radio buttons that I want to disable given the choise had been made (stored in Access DB)It searches only the first value. HEre is the script:
I had already chosen "Bill: Dec-12", the radio button is disabled when I access the page. But when I fill the form and choose "Jack: Dec-13", the next time I go to the registration form - the radio button for "Jack: Dec-13" is not disabled Code:
View Replies
View Related
i need to go to the start of my file, in acsses through asp. how do i do that?
View Replies
View Related
When I create a ADODB.RecordSet object and then try to loop through the results, everything works fine, unless when I am done looping through the results I need to call the movefirst on the recordset object. If I happen to have used an ORDER BY in my SQL, it bombs out. Code:
View Replies
View Related
I'm getting errors when trying to access any Recordset properties and methods
"Object Doesn't support Property error" MoveNext
"Object Doesn't support Property error" EOF
"Object Doesn't support Property error" RecordCount
I'm using a DSN and ADO do I have to change to an OLE DB connection?
View Replies
View Related