People need help.
I have the following ceiling of select HTML
<select id="lstTransacao" name="lstTransacao">
<option value="null">Todos</option>
<option value="1">Confirmados</option>
<option value="0">Não confirmados</option>
</select>
<input id="btnFiltrarTransacao" type="submit" name="btnSearch" value="Filtrar Transações" class="style_button" onclick="javascript: filtraTransacao();">
It's a page that does a search. It turns out that the page has pagination, when I click the paging button "1", "2", "3", etc. The SELECT returns to the default "all", I would like to keep if I click "Unconfirmed" go past the page and keep OPTION VALUE="0" for example.
ASP Classic 3.0
Thank you.