I am using third party payment gateway for my site.
Once customer fills amount detail and contact detail, page will be redirected to other .asp page.
In that asp page ,i have written below code.
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
But i am getting error at 2nd line only . The error says , Can't create Activex Object.
I have successfully registered e24paymentpipe.dll, but still i am getting error.
Can anyone please help me..?