Cfsearch empty result when user go.back
I have a cfsearch working very good but when my user click on a result and hit the browser back button the search result is empty and my user have to do another search.
I would like the user who go back to see the result they had.
<cfif isdefined("form.recherche")>
<cfsearch name="searchResultsproduit" collection=" sextantProduitFR" criteria="#form.recherche#">
<cfsearch name="searchResults" collection=" sextantFR" criteria="#form.recherche#">
<!---<cfdump var="#searchResults#">--->
<cfoutput query="searchResultsproduit">
#custom2#
</cfoutput>
<cfoutput query="searchResults">
#custom2#
</cfoutput>
</cfif>
