Mixing ASP Classic with DOTNET

  • Thread starter Thread starter Andrew Jocelyn
  • Start date Start date
A

Andrew Jocelyn

Hi

Does anyone know if I can use DOTNET assemblies in an ASP Classic page?
Basically I want to start writing business logic and database access stuff
in DOTNET but I want to use ASP Classic pages for presentation.

If so is there any information about this you could direct me to?

Thanks
Andrew
 
The "regasm" tool allows to expose .NET assemblies as COM objects. I've done
this provide ponctual support for existing ASP application (such as creating
thumbnails).

I would avoid doing this at a large scale. If this is a new application, I
would choose either ASP or ASP.NET but would avoid mixing both...
 
Back
Top