1
Answer

server side data on client side

Photo of vineet pathak

vineet pathak

14y
2k
1

Hi all,
I want to get all my server side data to client side so that when more than 100persons access my data,the performance should not get affected.I know one method that of XML,but if i use it,every time it will create new object for every new person accessing data.
Is there ant alternative to do that.
Its urgent
Thanks
vineet

Answers (1)

0
Photo of Administrator
Admin 2.3k 1.3m 22y
MSComctlLib.ListItem loItem; ListView1.ListItems.Add( , "prussell", "Paul Russell"); ListView1.ListItems.Add( , "dburton", "Dexter Burton"); ListView1.ListItems.Add( , "jthornton", "James Thornton"); loItem = ListView1.ListItems["dburton"]; if(!loItem == null) { debug.print("Found Dexter Burton"); } This is the basic syntax you need to use, I'm not sure if it's all correct as I develop web and not windows interfaces. Good Luck