Così funziona:
FOR xxx = 1 TO 5
IF xxx=4 THEN
Response.Write("OK!")
END IF
NEXT
Così invece NO:
variabiledaflash = (Request("variabiledaflash"))
FOR xxx = 1 TO 5
IF xxx=variabiledaflash THEN
Response.Write("OK!")
END IF
NEXT
Sapete dirmi perchè?
Così funziona:
FOR xxx = 1 TO 5
IF xxx=4 THEN
Response.Write("OK!")
END IF
NEXT
Così invece NO:
variabiledaflash = (Request("variabiledaflash"))
FOR xxx = 1 TO 5
IF xxx=variabiledaflash THEN
Response.Write("OK!")
END IF
NEXT
Sapete dirmi perchè?
Where there is a will, there is a way