from asp.net to COM object

  • Thread starter Thread starter Paolo
  • Start date Start date
P

Paolo

Hi guys,
i try to convert asp.net to COM object but a find a problem, when i
convert dll with tlbexp.exe the risult says that ther's an error
during the elaboration the 'namespace.MyClassCollection, assembly'.
Maybe the collection is not supported in COM object? Anyone know
somthings? thanks a lot by
 
Paolo,

What do you mean you are trying to convert ASP.NET to a COM object?
ASP.NET pages are completely separate, and run in the ASP.NET environment.

Now if you have just a regular dll that you want to move to a COM
object, then that's possible. You would have to make sure that you define
interfaces for all of your objects, as well as the program ids, guids, iids,
etc, etc before you use TLBEXP.
 
Back
Top