Hi,
In my web application I got a search results list (SR
). The search is heavily parametrized. Each element on the list can be clicked and then the element's own page (EP
) is displayed.
Now, the customer wants to have the ability to go to previous and next element from the search list that was used to enter the element page.
How would you implement this? I can either pass the search conditions to the EP
and the element's index on the list, then prev/next would just mean to rerun the search query, get previous / next index and display it (still passing the conditions and new index).
Or is there a better approach?