Cannot debug a project

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Cannot debug a project

    Have a solution which contains two projects. One is a MT/class project and
    another is a C# ASP.net project. The ASP.net project has a project reference
    set to the class project. I compile the projects in debug mode and run the
    ASP.net application but I cannot hit any break point.

    There are .pdb files with current date-time stamps generated for both the
    Class and Asp.net projects in the bin directory. The Debug->Process menu
    shows the correct IE process that is being debugged. There is no remote
    debugging that I am trying to do, this is all local to one machine. There
    are other projects on this same machine (VS 2002, .Net 1.0 SP2) that I can
    debug successfully.

    What am I missing?

    TIA



    SM Guest

  2. Similar Questions and Discussions

    1. How do I debug?
      I just installed Sokkit and have been teaching myself PHP. Doing ok, except for the fact that when I have an error in my code, my webpage comes...
    2. Large PHP Project... Need Project Manager
      Hey, I've got a nice CMS (in quite stable 2.0 form) that I need a Project Manager who can just deal with some bugs/answer questions for the next...
    3. Debug error - The project is not configured to be debugged (I've tried everything!)
      Hi, I am running v1.1.4322 on Win2K server and unable to debug a ASP.Net application running locally, using a full URL (ie www.mysite.com). When...
    4. I can't use the asp.net debug mode for a particular project
      have a couple of asp.net projects(Say A and B projects). For A project, I can use the debug mode so I can use the stepinto or stepover functions to...
    5. VB6 COM ASP DEBUG on XP
      Hello. Soon after setting up my XP development machine with VB6, I applied the registry fixes that Microsoft describes to work around VB6 COM...
  3. #2

    Default Re: Cannot debug a project

    Duh...The Enable Asp.Net Debugging property was set to false under projects
    Properties->Configuration Properties->Debugging

    "SM" <NOkksmkksmSPAM@yahoo.com> wrote in message
    news:uJvTRpCPDHA.1612@TK2MSFTNGP11.phx.gbl...
    > Have a solution which contains two projects. One is a MT/class project and
    > another is a C# ASP.net project. The ASP.net project has a project
    reference
    > set to the class project. I compile the projects in debug mode and run the
    > ASP.net application but I cannot hit any break point.
    >
    > There are .pdb files with current date-time stamps generated for both the
    > Class and Asp.net projects in the bin directory. The Debug->Process menu
    > shows the correct IE process that is being debugged. There is no remote
    > debugging that I am trying to do, this is all local to one machine. There
    > are other projects on this same machine (VS 2002, .Net 1.0 SP2) that I can
    > debug successfully.
    >
    > What am I missing?
    >
    > TIA
    >
    >
    >

    SM Guest

  4. #3

    Default Re: Cannot debug a project

    This usally happenes when sysmbols are not loaded properly.
    What you have to make sure is
    1.you are running the application in debug mode and not release mode.
    2. Make sure debugging is enabled by right clicking on
    Project->Properties->Configuration Properties->Debugging and on right pane
    make sure "Enable ASP.NET Debugging" is set to True.

    Cheers
    nitc3

    "SM" <NOkksmkksmSPAM@yahoo.com> wrote in message
    news:uJvTRpCPDHA.1612@TK2MSFTNGP11.phx.gbl...
    > Have a solution which contains two projects. One is a MT/class project and
    > another is a C# ASP.net project. The ASP.net project has a project
    reference
    > set to the class project. I compile the projects in debug mode and run the
    > ASP.net application but I cannot hit any break point.
    >
    > There are .pdb files with current date-time stamps generated for both the
    > Class and Asp.net projects in the bin directory. The Debug->Process menu
    > shows the correct IE process that is being debugged. There is no remote
    > debugging that I am trying to do, this is all local to one machine. There
    > are other projects on this same machine (VS 2002, .Net 1.0 SP2) that I can
    > debug successfully.
    >
    > What am I missing?
    >
    > TIA
    >
    >
    >

    nitc3 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139