.NET Class in ASP 3.0

R

Richard Cook

Hello,

Is it possible to instantiate a .NET Class (DLL) in the
classic ASP 3.0?

Thanks in advance!
 
P

Peter Rilling

Yes and no. The engine that processes ASP pages does not understand .NET,
so you cannot directly use .NET object. You can, however, create COM+
objects in .NET and expose the functionality through to the ASP page. Those
objects would be used just like any other COM object like the
FileSystemObject.
 
W

Willy Denoyette [MVP]

No, APS 3.0 means NT4, and COM+ is W2K or higher.
MTS (NT4) cannot accomodate .NET ComponentServices.

Willy.
 
M

Michael Giagnocavo [MVP]

I thought ASP3 was what came with Windows 2000? At any rate, I don't think
COM+ is really needed, just simple COM interop.

-mike
MVP
 
W

Willy Denoyette [MVP]

Michael,

My bad, asp 3.0 = IIS5 = W2K. Sorry for the mis-information.
And sure you don't need COM+ for this, just expose your .NET classes as COM
objects.
Willy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top