为什么不能显示小数点后面的数据?
<%
sql="select * from OrderItem oi,Product p where oi.Pro_Code=p.Pro_Code"
set rs=conn.execute (sql)
SmallTotal=clng(rs("Pro_CurPrice"))*clng(rs("Item_quantity"))
then
response.write SmallTotal
%>
其中字段Pro_CurPrice,Item_Quantity都是decimal(18,2)类型的,为什么当SmallTotal有小数的时候,显示不出来?