Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Debug VB dll

Status
Not open for further replies.

sonali7299

Programmer
Joined
Jan 7, 2003
Messages
2
Location
US
Hi All,
Can anybody please tell how to debug VB dl from ASP?
Thanks
 
Pull your dll up in VB. (on same box as IIS)
Set your breakpoints.
Hit the Start button.
Navigate to the web page that calls the dll from a browser.
VB should break at your breakpoint.

Is this what you needed?
 
if your DLL's run under component service on another machine you can debug them to on the remote machine.

Basically where your objects reside set the package to interactive user.
Start VB up with your objects project
Press F5 to start (if prompted pick "Wait for components to be created")
set your break points
run your web app.

I debug components in on a app server with remote clients using the objects.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top