Grazie Toki,
stavo appunto scrivendo la mia soluzione, avvolte un forum serve anche a far ragionare
<input name="campo1" type='text' id='campo1' value='
<%
valore = session("importo")
if isNumeric(valore) then
valore = cLng(valore)
else
valore = 0
end if
if valore < 50001 then
response.write "250,00"
elseIf valore > 50000 and valore < 220001 then
response.write "0,50" * session("importo") / 100
elseIf valore > 220000 and valore < 9999999999999999999999999 then
response.write "1100,00"
'else
'response.write "1100,00"
end if
%>' />
Proverò subito anche il tuo suggerimento.
Grazie 10000