I need inputs on:
I've created a DLL file using .NET. This DLL file is intended to use for ASP Classic and ASP.NET applications. I've created a setup and deployment package, and I added the solution's output to GAC folder. After that, creating an instance in ASP Classic didn't work. I am not sure, if it can load from the GAC folder.
Alternatively, I converted this .dll as COM by adding inheriting from ServiceComponent and other necessary changes, but while registering on client as COM, it throws an error:
one or more files do not contain components or type libraries
What am I missing? What shall I do so that the DLL file can be used by ASP Classic and ASP.NET?