Buongiorno, sono qui a chiedervi un consiglio.

Devo aggiungere dei "filtri" per estrazione dati su una pagina asp dove ho già previsto delle condizioni:

codice:
strID = request.querystring("trasf")
strIDUOAT = request.querystring("uoat")
strDATACO = request.querystring("data")

if strID = "" and strIDUOAT = "" and strDATACO = "" then

if ut <> 22 AND ut <> 53 AND ut <> 60 then

>>>>>>> query numero 1

else

>>>>>>> query numero 2
>>>>>>> query numero 3

end if

else

>>>>>>> query numero 4
>>>>>>> query numero 5

end if
I filtri sono 6 e mi ritrovo a dover prevedere oltre alle condizioni iniziali altre 12 query per condizione... come posso organizzarmi affinchè tutto funzioni regolarmente?

Grazie-