新闻动态

news

Asp价格大于10000时显示万字方法

发表于:2011-06-08 00:00:00 来源:SOUAB.COM 人气:3290

<%
Dim Punit
Punit=150000 '此处调用你的价格或其它数值
if Punit>=10000 then
response.write Punit/10000 & "万元"
else
response.write Punit & "元"
end if%>