I have a project where a user needs to loop through approx. 100,000 photos and assign PhotoType ID to each photo.
Project requirement is that only one photo is displayed on screen, so basically it means there would be 100,000 pages holding 1 item.
What would be the best way to start this project and it is obviously that use of ViewState or complete page reload would be waste of resources?
I was thinking of trying to serialize data as a client script variable and then play with it using Page Methods. I am using c# asp.net.
If you have any ideas or a better approach let me know.