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
Loading
CrishPosted Jun 1, 2010, 7:20 AM
if you can take whole data on client side then it will create performance issue. You can not use all the data for all 100 users. Nwe Query will be executed for all the data.
So better...use paging and get data only which you required. You can also use custom paging for that.
thanks
Don't forget to Mark Do you like this Answer
that solved your problem!