473,407 Members | 2,598 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

Web site can no longer be debugged

On XP I deinstalled and then reinstalled IIS. Now an ASP.Net project that I
had on the site can no longer be debugged. The project settings and
web.config appear to be correct. However, I noticed that it no longer
appears as a virtual directory in IIS Manager. New projects that I create in
Visual Studio do appear as virtual directories. What has gone wrong here and
how do I correct it?

Many thanks.
Nov 20 '05 #1
5 1059
%windir%\System32\inetsrv\iis.msc

Define as VDIR and Application whatever directory you want...

--
Daniel Fisher(lennybacon)
http://www.lennybacon.com
"Andrew Chalk" <ac****@magnacartasoftware.com> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
On XP I deinstalled and then reinstalled IIS. Now an ASP.Net project that
I had on the site can no longer be debugged. The project settings and
web.config appear to be correct. However, I noticed that it no longer
appears as a virtual directory in IIS Manager. New projects that I create
in Visual Studio do appear as virtual directories. What has gone wrong
here and how do I correct it?

Many thanks.

Nov 20 '05 #2
That is just IIS manager. In C:\Inetpub\wwwroot the Properties->web sharing
settings on the project that does not work are the same as on the one that
does.

- A

"Daniel Fisher(lennybacon)" <in**@lennybacon.com> wrote in message
news:uU**************@TK2MSFTNGP15.phx.gbl...
%windir%\System32\inetsrv\iis.msc

Define as VDIR and Application whatever directory you want...

--
Daniel Fisher(lennybacon)
http://www.lennybacon.com
"Andrew Chalk" <ac****@magnacartasoftware.com> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
On XP I deinstalled and then reinstalled IIS. Now an ASP.Net project that
I had on the site can no longer be debugged. The project settings and
web.config appear to be correct. However, I noticed that it no longer
appears as a virtual directory in IIS Manager. New projects that I create
in Visual Studio do appear as virtual directories. What has gone wrong
here and how do I correct it?

Many thanks.


Nov 20 '05 #3
re:
That is just IIS manager.
The IIS Manager is *the* tool for managing websites.

Although you can create a virtual directory by using the "web sharing" tab
of the physical directory's properties in Windows Explorer, there's many
other properties which can only be set from the IIS Manager.

To debug an ASP.NET application, you must be an administrator on the
machine that the ASP.NET Web server is running or your name must be
in the Debugger Users group if the ASP.NET worker process is running
under your user account.

Besides checking for obvious mistakes, like not having the ASP.NET account
as a member of the Debugger Users group, review this list of common errors
which prevent you from debugging ASP.NET apps :

http://support.microsoft.com/default...b;en-us;306172

Find the error message you're getting, and read the appropiate KB.

If that doesn't solve your problem, here's a list of MSDN articles on debugging:

http://msdn.microsoft.com/library/de...pplication.asp


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
ASPNETFAQ.COM : http://www.aspnetfaq.com/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"Andrew Chalk" <ac****@magnacartasoftware.com> wrote in message
news:e1**************@TK2MSFTNGP09.phx.gbl... That is just IIS manager. In C:\Inetpub\wwwroot the Properties->web sharing settings on
the project that does not work are the same as on the one that does.

- A "Daniel Fisher(lennybacon)" <in**@lennybacon.com> wrote in message
news:uU**************@TK2MSFTNGP15.phx.gbl...
%windir%\System32\inetsrv\iis.msc

Define as VDIR and Application whatever directory you want...

--
Daniel Fisher(lennybacon)
http://www.lennybacon.com
"Andrew Chalk" <ac****@magnacartasoftware.com> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
On XP I deinstalled and then reinstalled IIS. Now an ASP.Net project that I had on the
site can no longer be debugged. The project settings and web.config appear to be
correct. However, I noticed that it no longer appears as a virtual directory in IIS
Manager. New projects that I create in Visual Studio do appear as virtual directories.
What has gone wrong here and how do I correct it?

Many thanks.

Nov 20 '05 #4
One more question, Andrew :

re:
On XP I deinstalled and then reinstalled IIS.
Did you reinstall VS.NET after you did that ?
If you didn't, you should.

If you install IIS after VS.NET, there's all sorts of problems
which crop up. IIRC, not being able to debug is one of them.

Some of the problems caused by installing IIS after VS.NET
is installed can be fixed by running aspnet_regiis -i from
the .Net Framework's directory.

There's been lots of reports of problems
continuing to occur after that's done, though.

Reinstalling VS.NET after uninstalling and reinstalling IIS is safer.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
ASPNETFAQ.COM : http://www.aspnetfaq.com/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"Andrew Chalk" <ac****@magnacartasoftware.com> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl... On XP I deinstalled and then reinstalled IIS. Now an ASP.Net project that I had on the
site can no longer be debugged. The project settings and web.config appear to be
correct. However, I noticed that it no longer appears as a virtual directory in IIS
Manager. New projects that I create in Visual Studio do appear as virtual directories.
What has gone wrong here and how do I correct it?

Many thanks.

Nov 20 '05 #5
I have not. Instead I created a new ASP.NET project and added the old
project's files to that.

I was hoping to avoid a complete re-install but may not be able to.

- Andrew

"Juan T. Llibre" <no***********@nowhere.com> wrote in message
news:%2***************@TK2MSFTNGP10.phx.gbl...
One more question, Andrew :

re:
On XP I deinstalled and then reinstalled IIS.


Did you reinstall VS.NET after you did that ?
If you didn't, you should.

If you install IIS after VS.NET, there's all sorts of problems
which crop up. IIRC, not being able to debug is one of them.

Some of the problems caused by installing IIS after VS.NET
is installed can be fixed by running aspnet_regiis -i from
the .Net Framework's directory.

There's been lots of reports of problems
continuing to occur after that's done, though.

Reinstalling VS.NET after uninstalling and reinstalling IIS is safer.


Juan T. Llibre, ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
ASPNETFAQ.COM : http://www.aspnetfaq.com/
Foros de ASP.NET en Español : http://asp.net.do/foros/
======================================
"Andrew Chalk" <ac****@magnacartasoftware.com> wrote in message
news:OI**************@TK2MSFTNGP15.phx.gbl...
On XP I deinstalled and then reinstalled IIS. Now an ASP.Net project that
I had on the site can no longer be debugged. The project settings and
web.config appear to be correct. However, I noticed that it no longer
appears as a virtual directory in IIS Manager. New projects that I create
in Visual Studio do appear as virtual directories. What has gone wrong
here and how do I correct it?

Many thanks.


Nov 20 '05 #6

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

Similar topics

7
by: Rob | last post by:
Several weeks ago I asked Yahoo / Geocities to close both my e-mail account and my web site. However, something went wrong and Geocities closed only my e-mail account. Therefore, I can no longer...
1
by: Mark Kamoski | last post by:
Hi-- All of sudden (?) the VS.NET v1 IDE is NOT automatically attaching aspnet_wp.exe as a debugged process. Why? Here is the situation. VS.NET (v1)
1
by: mark4asp | last post by:
I moved a page to another web-site and now it's broke! I had 5 pages in their own web-site. These pages have now been moved to another web-site. Everything is fine except that one of the pages,...
9
by: Jason | last post by:
Hi all, I am no longer able to publish a web site project using Visual Studio 2005 Professional. I am publishing it to an FTP url, and this used to work just fine. I enter the username and...
3
by: scoarescoare | last post by:
I have a different type of question. After you've tested and debugged your site, how do you hand off the new site to your customer so that they can update/maintain it by themselves? Do you create...
1
by: Randy | last post by:
I'm using VS 2003. I have a c# ASP project. Lately, when I've been running the project in the IDE, I get a dialog which says... "This source file has changed. It no longer matches the version of...
2
by: =?Utf-8?B?Tmljb2xl?= | last post by:
Hello, I developped an ASP.Net Web Site in C# language. It can save the Project Server URL, connect to Project Server and create a Project on it. I debugged it and ran it correctly from Visual...
1
by: Alan F | last post by:
Can anybody please help me with this one. I have just changed my hosting company and moved a web site to it. For some reason my framed menus now no longer works correctly.() I have set up up a...
2
by: daveh551 | last post by:
I've developed a site using Visual Studio 2005, ASP.NET, C#, and a MySQL database. I've gotten it debugged under the visual studio environment, and moved it over to the server on my Domain...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
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...
0
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...
0
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...
0
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,...
0
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...

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.