关于if then 语句
我想让某值小于1时显示为无,大于1时继续显示值内容,该怎么写?
用下面的方法不行!~
<%
if p_cmoney<1 then
response.write "无"
elseif p_cmoney>1 then
response.write "<%=p_cmoney%>"
else
end if
%>
参考答案:<%
if p_cmoney<1 then
response.write "无"
else
response.write ""&p_cmoney&""
end if
%>