ÄúµÄλÖãºÑ°ÃÎÍøÊ×Ò³£¾±à³ÌÀÖÔ°£¾VBScript£¾VBScript


objects constants operators statements functions properties methods





OPERATOR:   <

 <

The < operator determines if the first expression is less-than the second expression.

Code:
<% 123 < 456 %>
<% "a" < "A" %>

Output:
True
False