Cita:
Iniciado por Mickel construyes la cadena dinamicamente segun las opciones
es decir que hagas algo como:
if request.querystring("filtro1") = "asc" then
strSQL = strSQL & " ORDER BY FILTRO1 ASC"
else
strSQL = strSQL & " ORDER BY FILTRO1 DESC"
end if
if ...
...