我正在为我的网站使用第三方支付网关。
一旦客户填写金额详细信息和联系详细信息,页面将被重定向到其他 .asp 页面。
在那个asp页面中,我写了下面的代码。
Dim pipe
Set pipe = Server.CreateObject("e24PaymentPipe.e24PaymentPipe.1")
pipe.ResourcePath=resourcePath 'mandatory
pipe.Alias=aliasName 'mandatory
pipe.Action=action 'mandatory
pipe.ResponseURL=receiptURL 'mandatory
pipe.ErrorURL=errorURL 'mandatory
pipe.Amt=amount 'mandatory
pipe.Currency=curr
pipe.Language=language
pipe.TrackId=trackId
pipe.Udf1=donateamt
pipe.Udf2=email
pipe.Udf3=phone
pipe.Udf4=baddress
pipe.Udf5=fname
但我只在第二行出现错误。错误说,无法创建 Activex 对象。
我已成功注册 e24paymentpipe.dll,但仍然出现错误。
谁能帮帮我吗..?