ASP常用函数:IIF()
编程学习 2021-07-05 10:58www.dzhlxh.cn编程入门
用法: IIF(条件表达式,为真时返回值,为假时返回值)
<%
Function IIf(bExp1, sVal1, sVal2)
If (bExp1) Then
IIf = sVal1
Else
IIf = sVal2
End If
End Function
%>
<%
Function IIf(bExp1, sVal1, sVal2)
If (bExp1) Then
IIf = sVal1
Else
IIf = sVal2
End If
End Function
%>
上一篇:ASP常用函数:ArrayToxml
下一篇:15种ASP技巧