当前位置:编程学习 > asp >>

用ASP写组件

答案: 打开VB,新建AX DLL,工程名为Str,类名count,输入如下代码:
复制代码 代码如下:

Public Function add(ByVal a As Double, ByVal b As Double, ByVal c As Integer, ByVal d As Integer) As Double
d = CInt(d)

If c = 1 Then '加
add = FormatNumber(a + b, d)
ElseIf c = 2 Then '减
add = FormatNumber(a - b, d)
ElseIf c = 3 Then '乘
add = FormatNumber(a * b, d)
ElseIf c = 4 Then '除
add = FormatNumber(a / b, d)
End If

End Function


参数说明:a,b 为需要计算的数值,c为计算类型,d为小数点保留多少位

客户端ASP文件代码:

复制代码 代码如下:

set obj=server.CreateObject("str.count")
dim c
c=obj.Add(455,45,4,2)
Response.Write c


上面代码执行结果就是:455除以45,小数点精确到百分位

上一个:msxml3.dll 错误 ''800c0005''解决方案
下一个:asp防止刷新功能实现代码

CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,