<select name="recordLimit" id="recordLimit">
<option value="10">Last 10</option>
<option value="50">Last 50</option>
<option value="100">Last 100</option>
<option value="500">Last 500</option>
<option value="0">All</option>
</select>
I have a search page with some drop downs and the user can choose and search data for it. I have a record limit drop down that limits no of records returned on search. Say if I select last 50 records in the drop down and it gives me the last 50 records in the results page. but I want to remember the value selected in the jsp page(ie.. display last selection when the results are rendered)