Link to home
Start Free TrialLog in
Avatar of Camillia
CamilliaFlag for United States of America

asked on

Alternative to datatable

I get rows from the database and store them in a datatable. Rows can be from 39 up to maybe 200 . I have 5 columns. I have at most 100 users. I save this datatable in a session and loop thru it to build a treeview and its nodes..

Is there an alternative to Datatable that I can keep in session that would be better for performance?
ASKER CERTIFIED SOLUTION
Avatar of zkeown
zkeown
Flag of United States of America image

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 Camillia

ASKER

ah, didnt think about XML. Let me think.
There's an example halfway down this page.  You'd need to modify it to actually create an XML file instead of just storing it in memory, but otherwise I've used it and it works great.

http://www.15seconds.com/issue/041117.htm
thanks, let me look.