shoptax.asp
来自「vb的一个事例,简单了一点,但实用的一个电子超市系统」· ASP 代码 · 共 12 行
ASP
12 行
<%
Sub CalculateTax (subtotal, total, shippingcost, tax)
' This routine calculates tax fo VP-ASP
' Inputs are
' subtotal - price of of products order
' total - price including shipping
' shippingcost cost of shipping
' tax this value needs to be set and returned
Tax=0
tax=subtotal*.05
end sub
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?