
Debugging ActiveX DLL from ASP
You can register the component in MTS or COM+, then you need to get the
Application ID using the MTS console, application property. Then go to your
VB COM project configuration, under debugging tab, fill the Start Program
with C:\WINNT\SYSTEM32\DLLHOST.EXE /ProcessID:(application ID). Finally
place a breakpoint anywhere in the COM code. When ASP reaches the method
having the breakpoint, it will stop at the breakpoint you placed.
Cheers
Jaime
Quote:
> Hello,
> I developed ActiveX DLL for use by ASPs. Is there a way I can debug a DLL
> from ASP? By saying that, I mean when I used browser to retrieve ASP
pages,
> at the same time , I can use VB to step through the DLL.
> Thanks in advance