473,659 Members | 2,922 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Debugger problem

I am developing a website in asp 2.0 and have recently started having
problems setting breakpoints for debugging. I can set a breakpoint, start the
debugger, then the breakpoint will show the message: "The breakpoint will not
currently be hit. No symbols loaded for this document".
The project is a Web project so there is no debug folder or single .pdb file
for the site itself. I have tried deleting all .pdb files in the
'C:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5072 7\Temporary ASP.NET Files'
directory for this project, and have run the Visual Studio 2005 repair
install. Still no joy.
It seems to be happening on every new page I create. Oh, and I have also
made sure the solution is in Debug mode.
It just started happening today in a page where debugging had previously
worked before, so this has really got me stumped.

Help, please!!!!
Mar 22 '06 #1
4 1177
Do you have Enable ASP.NET debugging switched on in IIS? (assuming it is an
IIS project)
Regards,
Pandurang
--
blog: www.thinkingMS.com/pandurang
"coolhotrod " wrote:
I am developing a website in asp 2.0 and have recently started having
problems setting breakpoints for debugging. I can set a breakpoint, start the
debugger, then the breakpoint will show the message: "The breakpoint will not
currently be hit. No symbols loaded for this document".
The project is a Web project so there is no debug folder or single .pdb file
for the site itself. I have tried deleting all .pdb files in the
'C:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5072 7\Temporary ASP.NET Files'
directory for this project, and have run the Visual Studio 2005 repair
install. Still no joy.
It seems to be happening on every new page I create. Oh, and I have also
made sure the solution is in Debug mode.
It just started happening today in a page where debugging had previously
worked before, so this has really got me stumped.

Help, please!!!!

Mar 23 '06 #2
Hi coolhotrod,

What's your dev box's OS version/IIS version, also are you developing the
application through IIS or file system project? Basically, if you haven't
done any particular changing in the dev environment, there shouldn't have
any configuration problem. Try creating a new web project to see whether
the problem remains? Also, you can try manually attach the ASP.NET worker
process to debug.
Regards,

Steven Cheng
Microsoft Online Community Support
=============== =============== =============== =====

When responding to posts, please "Reply to Group" via your newsreader so
that others may

learn and benefit from your issue.

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

Mar 23 '06 #3
Hi Steven,

My OS is Server 2003 Enterprise with IIS 6. I think the default for a Web
project is through IIS, and under Start Options in the Property Pages, use
default web server is checked.

New development today: I tried starting the debugger, it started up, but the
browser never opened, and I got an error that said : 'Unable to Start
Debugging on the Web Server Operation timed out'. So, I figured, this is
getting worse, and I tried your suggestion of creating a new project. The new
project seems to be working so far.

Do you think this might be a bug, it seems like something strange started
happening with my debug files.

Thanx

"Steven Cheng[MSFT]" wrote:
Hi coolhotrod,

What's your dev box's OS version/IIS version, also are you developing the
application through IIS or file system project? Basically, if you haven't
done any particular changing in the dev environment, there shouldn't have
any configuration problem. Try creating a new web project to see whether
the problem remains? Also, you can try manually attach the ASP.NET worker
process to debug.
Regards,

Steven Cheng
Microsoft Online Community Support
=============== =============== =============== =====

When responding to posts, please "Reply to Group" via your newsreader so
that others may

learn and benefit from your issue.

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

Mar 23 '06 #4
Thank you for the response Coolhotrod,

well, since there hasn't any particular change, it'll be hard to say
whether there is any problem in the IDE or .net environment. Sometimes
there does occurs such problem when some certain files/setting in the
project get corrupted. Anyway, I think you can still work on it, if this
become a definitely reproducable behavior, I think you may submit a issue
request on this.

Regards,

Steven Cheng
Microsoft Online Community Support
=============== =============== =============== =====

When responding to posts, please "Reply to Group" via your newsreader so
that others may

learn and benefit from your issue.

=============== =============== =============== =====
This posting is provided "AS IS" with no warranties, and confers no rights.

Mar 24 '06 #5

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

Similar topics

4
2370
by: Chuck Ritzke | last post by:
Hi, I've been using VS for a number of projects and the debugger has worked as advertised until now. I have a desktop solution with three projects, two of which are class modules. For some reason, in only one of them, the JIT debugger doesn't seem to be working. (At least I asssume this is a JIT debugger issue.) Anyways, in all my other projects an error causes the pop-up window with the break button option that breaks at the line...
25
4295
by: Jeff | last post by:
Use the MS Script Editor included free with MS Office 2002 and above, for debugging Internet Explorer (IE). This subject is of great interest to many JS developers, as there is no obvious, low cost way to do sophisticated debugging in IE6 other than to use the debugger described below, which is horribly documented otherwise. I feel debugging is an important aspect of projecting the useability of the language and needs to be made more...
7
1644
by: Piet Van Vlierberghe | last post by:
We are a software firm developing in C++ and we recently made the step from Microsoft Visual Studio 6 to Microsoft Visual Studio .NET 2003. We are really excited about the quality of the compiler; however there seem to be some issues with the debugger or the combination of our code with the debugger that makes debugging very slow and inconvenient. Since our efficiency in software development seriously decreased, we are looking for possible...
5
1490
by: Tom Edelbrok | last post by:
I have narrowed down a previous problem to the following more specific items: 1) I have my startup object in VB.NET (VS 2003) set to Sub Main(). 2) Inside of Sub Main() I do a "Application.Run(MyMainForm)" 3) Inside of MyMainForm_Load I create an object, ie: "poMyObj=new clsMyObj" 4) Within poMyObj I create a new System.Threading.Timer instance. I use a
2
2884
by: Chris Stiefeling | last post by:
Hi, I am experiencing a strange problem. I am reading and writing xml files via XmlDocument and XmlTextWriter. In the debugger everything works fine but outside the debugger (debug or release) I receive the following error: "The type initializer for "System.Xml.Schema.Validator" threw an exception." I wrote a small console app that contains the problem -- I've just attached the default class which gets run. Output outside the...
1
2858
by: Chris Stiefeling | last post by:
Hi, I am experiencing a strange problem. I am reading and writing xml files via XmlDocument and XmlTextWriter. In the debugger everything works fine but outside the debugger I receive the following error: "The type initializer for "System.Xml.Schema.Validator" threw an exception.". When running from the debugger (debug or release) no exception is thrown. I wrote a small console app that replicates the problem -- I've just attached...
3
2289
by: Doug | last post by:
I'm having problems w/ the VS2005 debugger with C#. It blows past any breakpoints in even the simplest "Hello World" console application. I can't do any step-by-step debugging. I've provided the code and debugging output later in this post. I've seen a number of threads with similar problems that I'll address below. The one that's the largest concern is this one, which talks about the same problem trying to use the debugger with SQL...
4
5934
by: aramsey | last post by:
I have a javascript program that works fine under Firefox and on IE when running XP, but is having a problem with IE running under Windows 2000 Pro. On my personal XP development machine I have the Microsoft Script Editor and I can set a breakpoint, step through code, inspect variables, etc... with no problem. On a machine where I am trying to debug this problem I am running Windows 2000 Pro with IE 6. I installed the Microsoft...
13
1497
by: Rainer Queck | last post by:
Hi NG, It looks like I have a problem with the debugger. Running the current project every thing "looks" fine, but if I set a breakpoint at a certain position in my code it takes the debugger very long to stop there. Then, if I try to step forward in my code I get the following error message (translated from German): "There are no symbols for the call list frame. The source code can not be displayed"
12
1597
by: colin | last post by:
Hi, Ive got a difference in results depending on wether I run my app in the debugger, or run it seperatly (or with <ctrl-f5>) the results in the debugger seem to be more correct, although the app isnt finished and theres still a lot of things it gets wrong. the processing is so complex its hard to determine where the difference can be occuring, its a visual display of 3d models, and theres a couple of surfaces
0
8428
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8335
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8851
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. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8627
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7356
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6179
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 instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4175
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1976
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1737
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 effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.