ASP常用函数:IIF()
程序员文章站
2023-11-16 22:12:04
用法: iif(条件表达式,为真时返回值,为假时返回值) <% function iif(bexp1, sval1, sval...
用法: 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
%>