I need to know how to make an if - else if statement so that different messages will appear, based on the button (the answer) the user will press.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You can use the If
, ElseIf
and End If
directives.
If i = 10 Then
response.write("Just started...!")
ElseIf i = 11 Then
response.write("Hungry!")
End If