What is the correct way to work with a webpage that returns search results that may have different results from one moment to another?
those. When returning a query, the first time may contain different results when the user clicks on page 2 and starts the query again.
How do most people deal with this scenario? As a rule, I work with internal ASP.Net applications (where security / bandwidth is not a huge problem), so I will store the results in ViewState, and on the reverse side, data that is opposite to database queries.
What is the proper methodology for using an external WWW? My best guess is to store the results in a temporary database table (not literally in the temp table, I think the “stage” could be more accurate), but I think the table will be heavily clogged with / etc inserts / deletes. and I think you will need a table cleanup process that doesn't seem like a very elegant solution.
Am I anywhere near?
source
share