ASP.NET 1.0 and 1.1 ProfessionalFor advanced ASP.NET 1.x coders. Beginning-level questions will be redirected to other forums. NOT for "classic" ASP 3 or the newer ASP.NET 2.0 and 3.5
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 1.0 and 1.1 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
You can't run ASP.NET from ASP per se, however you could run .NET from ASP. You can build a .NET assembly and make it visible to COM then consume it from ASP as you would any other COM component.
Appreciate it that is what I assumed just never done it so I thought I would just confirm. So you would just compile a release then drag it/start it in com?
You have to compile the assembly with the option for registering for COM interop. This is easy in VS.NET, it's just a checkbox in the project options. If you manually compile or (more importantly) after you've built it and copy it to another machine you have to run the RegAsm.exe that does the registration. I've not played with this to a great extent so I don't know the details of the process or what you need in addition to the assembly.