create component with vb.net for regular ASP..

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi..

anyone know how I can create components(business object) in vb.net for
regular ASP???

Regards, Tommy
 
Anything you do in .NET will need a COM wrapper to work in ASP. You can
create COM wrappers with the command line tool regasm.exe, which will create
the wrapper and register it as a COM object.

Overall, I would stick to VB 6 and make ActiveX DLLs instead, as Interop
creates bumps in the road. That is, unless you are switching to ASP.NET in
the process. Then the wrappers make more sense.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

************************************************
Think Outside the Box!
************************************************
 

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

Back
Top