0

My older app has classes written in classic asp. Just wondering, how can I use class created with classic asp in aspx page?

user1480864
  • 1,455
  • 3
  • 16
  • 23

1 Answers1

0

The preferred approach is to rewrite the code in a .NET language, but if you want to try something kinda crazy instead, you can:

First, convert the ASP class to a Microsoft Windows Script Component (known as a Scriptlet).

Then try calling it as a COM component from your .NET app.

But, really, the work you put into that is better spent doing a rewrite, for a multitude of reasons.

D'Arcy Rittich
  • 167,292
  • 40
  • 290
  • 283