asp语言中if判断语句的求助

来源:互联网 发布:2016上海程序员工资 编辑:程序博客网 时间:2024/06/05 20:43
If a < 5 Then
   Response.Redirect("1.asp")
ElseIf a > 5 And a < 8 Then
   Response.Redirect("2.asp")
ElseIf a > 7 And a < 19 Then
   Response.Redirect("3.asp")
ElseIf a > 18 Then
   Response.Redirect("4.asp")
End If
0 0