我想让某值小于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
%>
笑话军事旅游美容女性百态母婴家电游戏互联网财经美女干货家饰健康探索资源娱乐学院 数码美食景区养生手机购车首饰美妆装修情感篇厨房科普动物植物编程百科知道汽车珠宝 健康评测品位娱乐居家情感星座服饰美体奢侈品美容达人亲子图库折扣生活美食花嫁风景 | 首页 |
我想让某值小于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
%>