473,563 Members | 2,709 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Cannot debug ASP.Net

I start in debug mode and set a breakpoint on the page load event for the
startup page. The browser opens and the page renders. The breakpoint turns
to a "?" and says the breakpiont cannot be reached. Here is my output and I
notice the aspnet_wp.exe is exiting. No idea how to fix this. Yes I am in
debig and not release mode.

Auto-attach to process '[3052] aspnet_wp.exe' on machine 'DELL' succeeded.
'DefaultDomain' : Loaded
'c:\winnt\micro soft.net\framew ork\v1.1.4322\m scorlib.dll', No symbols loaded.
'DefaultDomain' : Loaded
'c:\winnt\assem bly\gac\system. web\1.0.5000.0_ _b03f5f7f11d50a 3a\system.web.d ll', No symbols loaded.
'DefaultDomain' : Loaded
'c:\winnt\assem bly\gac\system\ 1.0.5000.0__b77 a5c561934e089\s ystem.dll', No
symbols loaded.
'DefaultDomain' : Loaded
'c:\winnt\assem bly\gac\system. xml\1.0.5000.0_ _b77a5c561934e0 89\system.xml.d ll', No symbols loaded.
'/LM/w3svc/1/root-1-127598359525625 000': Loaded
'c:\winnt\micro soft.net\framew ork\v1.1.4322\m scorlib.dll', No symbols loaded.
'/LM/w3svc/1/root-1-127598359525625 000': Loaded
'c:\winnt\assem bly\gac\system. web\1.0.5000.0_ _b03f5f7f11d50a 3a\system.web.d ll', No symbols loaded.
'/LM/w3svc/1/root-1-127598359525625 000': Loaded
'c:\winnt\assem bly\gac\system\ 1.0.5000.0__b77 a5c561934e089\s ystem.dll', No
symbols loaded.
'/LM/w3svc/1/root-1-127598359525625 000': Loaded
'c:\winnt\assem bly\gac\system. xml\1.0.5000.0_ _b77a5c561934e0 89\system.xml.d ll', No symbols loaded.
The thread '<No Name>' (0xccc) has exited with code 0 (0x0).
The program '[3052] aspnet_wp.exe: DefaultDomain' has exited with code 0
(0x0).
The program '[3052] aspnet_wp.exe: /LM/w3svc/1/root-1-127598359525625 000'
has exited with code 0 (0x0).
The thread has exited with code 0 (0x0).
The program '[3092] IEXPLORE.EXE: Script program' has exited with code 0
(0x0).
Jul 21 '05 #1
3 4904
Roblenderman,

Did you already set the breakpoint on an earlier point. That is what I do in
those cases. Sometimes with ASPNET the program breaks (not breakpoint)
earlier and throws than an error.

Therefore set it by instance on the first instruction to try.

Cor
Jul 21 '05 #2
I set the break point on the startup pages load event. Then I start the
debug and the code in that event runs but it never breaks. Right after the
IE window opens showing the page the breakpoint get the ? and says it cannot
be hit. No ideas here.

Rob
"Cor Ligthert" wrote:
Roblenderman,

Did you already set the breakpoint on an earlier point. That is what I do in
those cases. Sometimes with ASPNET the program breaks (not breakpoint)
earlier and throws than an error.

Therefore set it by instance on the first instruction to try.

Cor

Jul 21 '05 #3


*** Sent via Developersdex http://www.developersdex.com ***
Jul 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
715
by: Paul | last post by:
Hi, VB.NET is saying the file I am creating is in use by another process and won't complete its task of moving the file to the specified destination folder. Here is my code (the main bit anyway).... Private Sub LogChange(ByVal source As Object, ByVal e As System.IO.FileSystemEventArgs) If e.ChangeType = WatcherChangeTypes.Created Then
1
1299
by: lukwagoroy | last post by:
Loaded 'ntdll.dll', no matching symbolic information found. I'm writing a small program. It compiled and run. But when trying to debug by select, I got the following error messages: Loaded 'ntdll.dll', no matching symbolic information found. Loaded 'D:\WINDOWS\system32\kernel32.dll', no matching symbolic information found. Loaded...
6
1857
by: Peter Afonin | last post by:
Hello: I'm running Windows server 2003. I've never had any problems with debugging, but now I cannot debug ANY of my projects. I'm getting this error: "Error while trying to run project: Unable to start debugging on the web server. Access is denied." The only thing I've done recently was installing all the latest Microsoft
2
1368
by: Scott Adams | last post by:
Does anyone know of some good resources to use when troubleshooting why one cannot debug ASP.NET apps? I am using Win2K pro SP4 (IIS 5) on a brand new machine and I cannot debug even the most simple ASP.NET app on my localhost. I have read through all kinds of MS KB articles on this issue and checked out a document on gotdotnet.com titled...
0
3474
by: Sin | last post by:
> Xxxxx : error PRJ0008 : Could not delete file 'd:\xxxxxxx.dll'. > Make sure that the file is not open by another process and is not write-protected. > > LINK : fatal error LNK1168: cannot open ../../Debug/xxxxx.dll for writing > > The file 'xxxxxx.dll' cannot be copied to the run directory. The process cannot > access the file because it...
3
1756
by: fripper | last post by:
I am writing a simple web application using the .Net Framework 1.1 and VB ..Net. I have installed IIS on my development machine but when I try to run the program in debug mode I get an "Unable to start debugging on the web server" message. I have looked at the help articles that are referenced and have checked out the stuff they mention but...
4
23204
by: Glenn | last post by:
OK, I've looked up this message but am not finding how to get rid of it: "Cannot evaluate expression because a thread is stopped at a point where garbage collection is impossible, possibly because the code is optimized" I'm trying to debug, and it's rather difficult when I can't find the values of expressions because of whatever is causing...
5
2152
by: Ryan Liu | last post by:
I have this problem: "cannot continue edit while debug in VS2005". I see the same tread after I search this topic in google, but none solutions works for me. So again, I ask here. Can someone give a hand? Has MS fixed this in VS 2005? Is is fixed in VS 2008? Thanks, ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.
6
6562
by: =?Utf-8?B?RmFiaWFu?= | last post by:
Hi, I have a pretty complicated program which consists of the following basic modules: 1. a C# application 2. a C++/CLI application which is controlled by the C# app via IPC remoting 3. lots of native code which is wrapped by the managed C++/CLI code A remark to this complicated structure: We are controlling hardware via
5
2313
by: Just_a_fan | last post by:
I tried to put an "on error" statement in a routine and got the message that I cannot user "on error" and a lamda or query expression in the same routine. Help does not list anything useful for explaining a "lamda" expression and so I don't know what one is and I am not doing any database stuff in the entire program. So what does this...
0
7885
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8106
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7638
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
1
5484
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3642
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3626
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2082
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1198
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
923
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.