You can wrap the .NET class in COM, register it using the regasm.exe tool so
that it is exposed just like any other COM component. A CCW (COM-Callable
Wrapper) will be created and take care of the marshalling to and from the
managed code.
This is a great solution to gradually move to ASP.NET, once all of your
components have been upgraded you can then re-write the ASP application in
ASP.NET. Here's info on the Regasm utility:
http://msdn.microsoft.com/library/de...lregasmexe.asp
--
Brian M. Reisman
MCAD, MCDBA, MCSD,
MCSE, MCT, OCA, NET+
My Book @ Amazon:
http://www.amazon.com/exec/obidos/tg...l/-/0782141617
"An" <(E-Mail Removed)> wrote in message
news:8DA15CBE-DD38-439E-89B7-(E-Mail Removed)...
> I have a server side .asp page (without any UI controls) on a server.
> I also have a .Net class on the same server, in the same application.
> Can I invoke that class from the .asp page?
>
>