In my ASP web application, I am facing a challenge with listboxes as changes in item selection happen frequently and quickly. This results in slow performance when trying to retrieve the necessary information through postbacks.
So, I am trying to figure out the optimal way to store data on the client side. Should I consider using postback, ajax, or another approach
The data that needs to be stored can be in a single string format for each item, but I need to account for all items in the Listbox and the number of items is variable.
I would appreciate your insights on the best approach for managing this information effectively.