Link to home
Start Free TrialLog in
Avatar of NHBFighter
NHBFighter

asked on

dynamic html generation using client side javascript

I'm writing a page that displayes records pulled from a database. The list of records can potentially be large so we want to only display 10 records on the screen at once, and alow the user to navigate through the records 10 at a time.  I would like to send all the records to the client at once and store them in a javascript array of some sort and have a javascript function write the relevant subset of the records to the screen when the user clicks on a next or previous button.  Any Ideas?
I'm not extreamly well versed in javascript so any help would be greatly appreciated.

Thanks
Dave
SOLUTION
Avatar of gagaliya
gagaliya

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of NHBFighter
NHBFighter

ASKER

Cool I see your point. I thought it would be quicker to do everything client side but my knowledge of client side processing is fairly limited. I'm going to do this server side like you suggested but I'm going to leave the question open for a while to see if any one else has any additional input.

Thanks
Dave
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for your help guys!!

Dave