vote up 1 vote down star

I have a c# .NET DLL compiled against the .NET 2.0 framework.

A customer uses classic ASP but needs the functionality of the .NET DLL. Is there a way for them to use the DLL?

flag

2 Answers

vote up 4 vote down check

You would need to consume the .NET dll as a COM callable wrapper. This generally involves marking it as COM-visible (via attributes), and registering it as a COM component (regasm?).

See MSDN for more.

The server will need the .NET framework, of course.

link|flag
Stuff that for a game of soldiers! Think I'll give it a miss. – Tim Saunders Nov 26 '08 at 16:50
@Tim - It's pretty straightforward in all honesty. – Russ Cam Sep 22 at 15:26
vote up 0 vote down

i think exposing it to COM is your only option (might be wrong)

link|flag

Your Answer

Get an OpenID
or

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