dim adt,chd1
adt=cstr(request("adt"))
chd1=cstr(request("chd1"))

totpax = (adt) + (chd1)
response.write totpax & "
"

parametri inviati

adt = 2

chd1 = 1

risultato = 21


provato anche con:

totpax = cstr(adt) + cstr(chd1)
response.write totpax & "
"

risultato 21