vote up 1 vote down star

My project has 4 layers i need to debug from UI to DAL ,,but when i am debugging,its going only in UI,,can any one tell how can idebug up to Dal

flag

74% accept rate

4 Answers

vote up 0 vote down

Does your Solution contain all 4 projects?

Is your ASP.NET application referencing your DLLs as Binaries or as Projects? (check by right-clicking on the web project and selecting Properties | References) Needs to be "Project".

Are all four assemblies/projects set to "Debug" output?

link|flag
i didnt get you,,can you clear the things i am new one to Asp.net layers are in different solutions – peter Mar 23 at 14:01
When i opened properties Build section the out path is like this way bin\ – peter Mar 23 at 14:07
when i googled i found System.Diagonostic.debugger.Launch will split layers for debugging – peter Mar 23 at 14:12
A typical Web Application in Visual Studio will have 1xweb site and any number of DLLs (representing DAL, etc.). These will sit within a single Solution. (A Solution has can have 1 or more Projects). For simplicity, keep your projects in same solution for debugging. – Program.X Mar 23 at 14:52
Also, it's not the path you're interested in (Leave as bin\). Right click on Web Site Project, click Properties, click References in left pane and your dependant projects should be on the right hand side, added as Project (not bin/DLL) – Program.X Mar 23 at 14:54
show 2 more comments
vote up 1 vote down

Are the layers all in separate Solutions? If so use the refrences to the Build\Debug directories to be able to step through.

Also make sure all projects are set the DEBUG under Build-> Configuration Manger

link|flag
i didnt get you,,can you clear the things i am new one to Asp.net – peter Mar 23 at 13:59
layers are in different solutions – peter Mar 23 at 14:00
when i googled i found System.Diagonostic.debugger.Launch will split layers for debugging – peter Mar 23 at 14:11
vote up 0 vote down

If you are just referencing the dll's for the individual layers, make sure you copy the appropriate pdb files for the dlls as well.

link|flag
vote up 0 vote down

Hi Just open all your projects first and try, it will work.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.