aspclassiccompiler/aspclassiccompiler/VBSC/test/if.vbs
2011-04-24 16:21:53 -07:00

13 lines
No EOL
195 B
Text

dim i, color
i = 0
if i = 1 then
color = "red"
elseif i = 2 then
color = "green"
elseif i = 3 then
color = "blue"
else
color = "black"
end if
response.write color