1
Guys, I need some help.
I have the following select HTML Techo
<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 paging, when I click on the paging button "1", "2", "3", etc. SELECT goes back to the standard "all", I would like to keep in case I click on "Not confirmed" go passing the paging and keep OPTION VALUE="0" for example.
ASP Classic 3.0
Grateful.