网络编程
位置:首页>> 网络编程>> Asp编程>> 如何实现优惠打折?

如何实现优惠打折?

  发布时间:2010-06-03 10:27:00 

标签:打折,asp,分数

如何实现优惠打折?

   
    代码及说明见下:

<%@ LANGUAGE = "VBScript"
ENABLESESSIONSTATE = False %>
<%
percent_discount = "10"
' 打折的百分比(%),如 2, 5, 10, 20
If Len(percent_discount) > 1 Then pd = "."&percent_discount&"" Else pd = ".0"&percent_discount&""
%>
<html>
<body>
<%
normal_cost = "50"
discounted_cost = normal_cost - (normal_cost * pd)
%>
Normal Cost: <%=FormatCurrency(normal_cost)%><br>
Discounted Cost: <%=FormatCurrency(discounted_cost)%>
</body>
</html> 


 

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com