Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We've just been tasked with updating an e-commerce application to use PayPal's PayFlow product. The site was originally written in classic ASP except for the credit card processing portion which was a COM component.

Our plan is to replace the COM component with a .NET 2.0 component. I'm looking for tips, gotcha, etc. before we embark.

share|improve this question

1 Answer

up vote 1 down vote accepted

I think Dan Bartels' blog post about Replacing Old Classic ASP COM Componenets With .NET Assemblies is the right starting point for you.

Implementing the details described in the blog post, you should be able to instantiate your objects in classic asp and execute code like this:

Dim myObject
Set myObject = Server.CreateObject("MyWebDLL.MyClass")
Response.Write myObject.MyMethod("test")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.