Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / ASP

Dubugging Classic ASP in Visual Studio 2005

Rate me:
Please Sign up or sign in to vote.
2.36/5 (9 votes)
22 Jun 2007CPOL1 min read 71.1K   31   12
Dubugging classic ASP in Visual Studio 2005 on Windows XP and IIS 5.

Introduction

I couldn't find a lot of documentation on how to debug the classic ASP pages in VS 2005 running on Windows XP and IIS 5.0. So I tried a few stuff and finally figured it out. I have listed those steps in this article. It is very easy and takes only 5 minutes. I have not tried it with the VS 2005 Website model and used the Web Application Project instead. If you do not have the Web Application Project add-in installed, you can download it from here.

Steps

  1. Go to Control Panel>Administrative Tools>Computer Management. Add IWAM_ComputerName account to the Debugger Users group.
  2. Create a Web Application Project in VS 2005 and add the .asp files.
  3. Create a virtual directory in IIS for the Web Application Project that you created.
  4. On the Properties tab of the virtual directory in IIS, do the following:
    1. Click the Configuration button.
    2. On the Mappings tab, select .asp and click Edit.
    3. Add the DEBUG verb and click OK.
    4. Go to the Debugging tab.
    5. Enable ASP debugging and client-side debugging.
  5. Load the web application project and set the breakpoint in ASP.
  6. In VS 2005, go to Debug > Attach to Process.
  7. Select the DLLHost process that runs under the IWAM_ComputerName account.
  8. Load the .asp file in the browser and the break point will bind now.

Happy coding.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWow ... Pin
roshan453428-Jan-13 23:09
roshan453428-Jan-13 23:09 
GeneralVS80-KB915364-X86-ENU.exe Pin
JRossi21-Oct-07 3:39
JRossi21-Oct-07 3:39 
GeneralIs there a way to do this in VWD2005 Express Pin
mhariri26-Jun-07 4:33
mhariri26-Jun-07 4:33 
GeneralDuh!!!!!!!! Pin
Buddy Stein24-Jun-07 11:53
Buddy Stein24-Jun-07 11:53 
GeneralRe: Duh!!!!!!!! Pin
Madhu Rajagopalan25-Jun-07 8:16
Madhu Rajagopalan25-Jun-07 8:16 
AnswerNo, but, it's in the MSDN documentation Pin
Buddy Stein25-Jun-07 9:41
Buddy Stein25-Jun-07 9:41 
GeneralRe: No, but, it's in the MSDN documentation Pin
denic27-Jun-07 21:48
denic27-Jun-07 21:48 
QuestionAny hints for VS 2005 in Vista? Pin
ComplexityChaos22-Jun-07 9:59
ComplexityChaos22-Jun-07 9:59 
AnswerRe: Any hints for VS 2005 in Vista? Pin
Owen3726-Jun-07 5:21
Owen3726-Jun-07 5:21 
AnswerRe: Any hints for VS 2005 in Vista? Pin
Owen3726-Jun-07 5:43
Owen3726-Jun-07 5:43 
OK, to get the DEBUG verb set, you have to make your web.config in the web-site root writable (See http://forums.iis.net/p/1069788/1557568.aspx).

NOW, what process do I attach to in Vista/IIS7?
GeneralRe: Any hints for VS 2005 in Vista? Pin
Madhu Rajagopalan26-Jun-07 6:10
Madhu Rajagopalan26-Jun-07 6:10 
GeneralRe: Any hints for VS 2005 in Vista? Pin
Owen3726-Jun-07 7:19
Owen3726-Jun-07 7:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.