Tim Huffam

Dotting the I and crossing the T of I.T.

  Home  |   Contact  |   Syndication    |   Login
  139 Posts | 0 Stories | 1348 Comments | 659 Trackbacks

News

Archives

Post Categories

Interesting Blogs/Links

The following error may occur when trying to run/debug an ASP.NET 2.0 web app, when the web server is not configured properly:

"Unable to start debugging on the web server.  The web server is not configured correctly.  See help for common configuration errors.  Running the web page outside of the debugger may provide further information."

This is usually caused because of one or both of the following problems:

  1. The directory the web app resides in has not been registered as a web application.
  2. The correct ASP.NET version has not been set for the web app (note that this cannot be set until 1. has been sorted out).

To fix problem 1:

  1. Open the IIS admin app.
  2. Right click on your app's directory (/virtual dir) and select Properties.
  3. On the Directory tab, under Application Settings, next to Application Name there will be a 'Create' button - click it.  Once the dir has been registered as a web app then this button will say 'Remove'.
  4. Click Apply (or OK).

To fix problem 2:

  1. Open the IIS admin app.
  2. Right click on your app's directory (/virtual dir) and select Properties.
  3. Select the ASP.NET tab.
  4. Select the correct ASP.NET version.  Note that this field is disabled if the dir has not been set as an application (see above).
  5. Click Apply (or OK).

HTH

Tim

posted on Monday, May 29, 2006 6:08 PM

Feedback

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/30/2006 3:55 AM Vadivel
In .NET 1.x itself we used to face the similar issue. Check out http://vadivel.blogspot.com/2006/05/error-while-trying-to-run-project.html

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 6/14/2006 1:49 PM James E
Another possibility is the project settings. Check "Debugging, HTTP URL" and verify that this entry is in fact where you've deployed your project on the webserver. The debugger is typically going to look for the .asmx file in the localhost/solution/project/project.asmx as opposed to localhost/project/project.asmx unless you change this.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/11/2006 3:57 PM Wlady
It hasnt work for me.. i still have the problem..

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/11/2006 3:58 PM Wlady
I mean .. im using .NET 2.05... and Visual Studio 2005 and IIS 6 with Windows 2003 Server...

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 10/25/2006 11:29 AM Saint Christopher
Hi, Got the same problem, and this what i did, if you have multiple projects in your solution, pls checked your IIS if all the project has same ASP.Net Version, hope this would help.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 10/31/2006 4:38 AM Abhijit Das
Still have same problem. I have VS 2005, IIS 6 & Win 2003 Server.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 11/2/2006 12:33 PM Mondo
I have this problem too and solve it.

You need to make your web application to use integrated windows authentication. Second thing, you also need to have a web.config file that stated <compilation debug="true">

Hope this help.



# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 11/10/2006 1:12 PM Michael Flanakin
Yet another possibility is that the solution may be setup to start debugging on the active project, which might be a class library. If that's the case, just click the name of the project you want to debug and press F5 again. You may also want to consider setting a specific project as the default, but this isn't always possible.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 12/7/2006 9:31 AM Mickey
It is not woiking for me...

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 12/26/2006 4:57 PM pdr
nOOOO, its not working for me either, done all 3 things

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 12/28/2006 12:53 PM senthil
register aspnet account with version surely it will work

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 1/25/2007 3:04 AM richteel
In my case I needed to give the Network Service account full access rights to the "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files" directory.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/22/2007 6:01 AM Satish
This will surely work...

1. Right click on the folder - "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files".
2. Select 'Properties'
3. Select the tab page - 'Security'
4. Click on 'Add' button
5. Click on 'Location' button
6. Choose your computer name.
7. click OK button
8. Click on 'Find Now' button
9. From the list, select 'ASPNET'
10.Click OK.
11. Now check the check box - 'Full Control'.
12. Click OK
13. Start debugging ur application

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/28/2007 12:41 AM AtomJT
Nice try Satish. Unfortunately, none of the above have worked for me, including your suggestion. Anyone else?

NOTE: I didn't have this problem until I installed the ASP.NET starter kits that I got from www.asp.net. Did anyone else have this issue soon after installing the starter kits?

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 3/19/2007 4:01 PM Fish
Tried most of the above to little avail. Lastly I gave full access rights to the 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727' folder and full access rights to all web project folders in my solution. Finally I ran the aspnet_regiis /i tool located in the 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727' folder.
And now it works again! What exactly did the trick? I don't know, but maybe these steps work for you as well.

Kind regards

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 3/27/2007 1:52 PM Rajiv Ranjan
Tried all the above but couldnot get any success. I am trying to run my apllication on a different port (8080) as on port 80 already sharepoint portal 2007 server is running. I wanted to run both at the same machine but i am doubtful about the starter kit as i have also installed it.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 3/28/2007 9:11 AM Garima
Guys..none of the suggestions given works.Wht to do?

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 4/4/2007 11:51 AM Rezgar
The trick was - that you've installed your IIS server after installing ASP.NET. So you had to register IIS manualy. Although, it didn't help me much =)

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 4/10/2007 3:25 PM Poopinator
Just close VS2005 and delete all temp files in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 4/11/2007 2:36 PM DSJ
Guys ...i have tried all the above option but nothing is working.Plz suggest something different.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 4/26/2007 3:03 PM Brian Pfau
Ok, I was having the same problem and I just fixed it...here is what I did:

1) Go to Internet Information Services
2) Right mouse click on your project directory
3) Go to the ASP.NET tab
4) Click the Edit Configuration button
5) Select the Application Tab
6) Check the 'Enable Debugging' checkbox

That's what worked for me

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/2/2007 10:37 AM dev
none of the above solution is working for me ...any other way out ???

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/2/2007 11:06 AM Alok
None of them worked any thing else please?

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/3/2007 11:00 PM Scott
Ok, try this:

Do EVERYTHING mentioned above including the "aspnet_regiis /i because that was the final thing for me after I did everything plus the stuff below:

Internet Options
Security
Trusted Sites
--- Add the following:
http://localhost
http://127.0.0.1

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/3/2007 11:03 PM Scott
Me again - you MUST make sure you do everything mentioned above - I did it all and then the internet options thing - and nothing worked until I read the part to run:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis /i

once I did that - BOOM - it worked. You have to set all the security things up, etc, etc - application name, asp.net version in iis, all that - I hope it works because it did for me and I was about to throw my computer out the window...

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/4/2007 1:36 PM yong
Okay I fixed the problem by doing this:

-Go to IIS
-Hit properties for the website
-Hit Asp.net tab
-Hit Edit Configuration
-Hit Application Tab
-Select C# as default language

*For some reason my default language was set to vb. All my code is written in C# not vb.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/11/2007 6:10 AM poonster
Hi all,

I've fixed this problem with these steps :

Right click on your project in VS2005.
Click on Properties
Click on Web tab
Under Servers, click on the radio button Use Visual Studio Development Server
Check Auto Assign Port radio button
Uncheck NTLM Authentication and Enable Edit and Continue

It works for my case

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/16/2007 3:47 AM Arun Chaudhary
Hi all,
i was facing same issue when i changed my project from 2003 to 2005 and i solved my problem with these steps:


Right click on your project in VS2005.
Click on Properties
Click on Web tab
Under Servers, click on the radio button Use Visual Studio Development Server
Check Auto Assign Port radio button
Uncheck NTLM Authentication and Enable Edit and Continue


# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/28/2007 7:03 AM SACHIN
HI,
PLZ HELP ME. I TRIED ALL THE WAYS U HAVE LISTED. I WAS NOT ABLE TO CORRECT IT.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 6/10/2007 6:54 AM s.m.shohrab uddin
My asp.net is not running because of web server is not running

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 6/18/2007 1:06 PM vishal
try running this command
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 7/18/2007 6:09 AM Don
Hi,

running the aspnet_regiis /i command worked for me aswell.

Thanks

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 7/26/2007 7:11 PM Eurfyl
Hi all

Ok if all the above fails then try this (it's the one that worked for me):

Go to IIS and right click on the 'web site' and go to 'properties' and select the 'Home Directory' tab.'' Under 'Execute Permissions', if it's set to 'none' then change it to 'Scripts and Executables'.

Restart IIS and fingers crossed!!


# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/3/2007 6:16 AM Jonathan Roberts
Within Web config look for <compilation debug="false"> and set this to true.
Sorry if someone has already mentioned this before.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/7/2007 5:12 AM Vimal Upadhyay
Most of stuff is rubbish, neither solved my problem

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/15/2007 5:25 AM Mundi
Hi, this worked for me when I did all the steps above and additionally opened IIS manager, right clicked on default web site, made sure the tcp port is 80, vent to asp.net tab and set the version to 2, the choose "Edit Configuration" button and select Application tab and check the "Enable debugging". Restart IIS.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/22/2007 2:08 PM Stan
ok one more thing, I was working on a site that required ssl, and had set "Require secure channel (SSL)" once I unchecked that I can debug again.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/24/2007 8:41 AM Dave Barry
Set the permissions on the folder for your logged in username.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/27/2007 3:21 PM nahom
I have this problem while registeering aspnet_regiis

IsDomainController failed with HRESULT 80070842: 'The Server service is not started. '

anyhelp?

Thanks

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/5/2007 3:58 PM Lore
Right click on the project , choose property pages then go under Start Options and under Debuggers check you should have checked only the Native code checkbox....this works for me

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/12/2007 5:04 PM Clay
I've tried all of the above...several times...did a repair install of VS 2005 and nothing...its dead...I also tried opening IE and attaching to it as a process...no go there either...very frustrating and renders my project useless. I can get the site to open fine...just not with the debugger on....I'm screwed

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/20/2007 8:24 AM somedude
Did try it all out.
The only thing working was:
running the aspnet_regiis /i

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/26/2007 4:51 PM Matt Cu
I had this problem when setting up a new development machine, and then remembered that I need to add the following line to the machine.config file:

<compilation debug="true" />

I added this right underneath the <system.web> tag, directly above the <processModel> tag. It fixed my problem.

machine.config is located in the following directory on my machine:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 10/4/2007 3:28 PM Scott
I've been having a similar problem and found these posts to be helpful in isolating it. In my case, I had to edit the project settings as follows:
1. under the Start Action section, specify "Specific Page" and list your startup page. Should be the same as the Default Page setting in IIS.
2. the Servers section should specify "Use IIS Web Server", and under that, "Project URL" should specify the fully qualified Project URL. This includes "http://<machine-name>/<project-name>", where <machine-name> is the machine name for the local web server, NOT localhost. I tried localhost and it did not work.
3. Set the Debuggers section to ASP.NET, and save changes and rebuild, then start in Debug mode and you should be good to go.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 10/15/2007 1:18 PM pussycat90210
I am using visual web developer 2005 express, on windows vista ultimate, I first went to control panel, then programs, then turn windows features on or off, then I set all the correct settings under Internet Information Service, making sure Windows Authentication was selected. Then in IIS Manager I set Windows Authentication and Anonymous Authentication “enable”, next I right clicked on Default Web Site and selected Advanced Settings, then under Application Pool, I set “Classic.Net AppPool” and everything worked out ok.

# Thanks Mondo :) 11/8/2007 7:28 PM Vinix
I solved the problem, thanks.

This situation occurred because I changed my web server setting from development server to IIS.

Why did it not happenned on development server? Weird.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 11/25/2007 6:43 PM AlexMon
What is the reason ASP.Net tab never appears in my IIS.MSC anybody know?

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 11/28/2007 3:50 PM Raj Gujar
running the aspnet_regiis /i command worked for me aswell.

R A J

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 11/28/2007 3:51 PM Raj Gujar
running the aspnet_regiis /i command worked for me as well.
Please perform other steps suggested.

R A J

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 12/7/2007 1:49 PM Oran
Enabling debbuging in Configuration of the ASP.NET tab worked for me.

Thanks Brian

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 12/11/2007 11:35 PM Dija S
If you are changing anything in IIS or anywhere else while your Visual Studio Editor is opened, remember to close and reopen the Visual Studio editor to make the chages enabled in the environment. Those who cannot recover from the error after doing all these steps can try this.
Dija

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 12/18/2007 1:10 PM www.ShantHagopian.com
I did everything said up there nothing worked, but this worked for me:

1- Open your yourproject.csproj file in Notepad
2- Make sure your project namespace and assembly name are correct in <AssemblyName></AssemblyName> and <RootNamespace></RootNamespace> tags.
3- Make sure <IISUrl>http://localhost/yourproject</IISUrl> is correctly pointing to the application name you specified in IIS

They weren't correct for me, so I changed it and saved the file , and F5-ed it, and what a pleasant surprise.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 1/10/2008 11:56 PM A
running the command
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i
worked for me thanks a lot fish,scott and vishal



# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 1/11/2008 5:44 PM Jimi2Cool
I was slamming my head against a brick wall for hours with this same issue.

It turns out, somehow permissions specifically on my web.confif file had got messed up. once i gave my machine and aspnet accounts full control the problem was solved.

So i'd look a little deeper than just the iis/directory level with the permissions things as it seems that they are generally somewhere at the root of the problem.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 1/24/2008 8:38 AM Tanner
aspnet_regiis -i worked for me as well.

I tried everything here till about halfway down the page before i just resorted to reinstalling the framework.

Many thanks to whoever initially figured out the fix!

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/4/2008 3:54 PM Andy
Make sure your web.config file is proper. I had a problem in which I had duplicate attributes on a node....

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/6/2008 7:25 AM sam
the problem on my pc was, anyone deleted the complete Inetpup folder.

you just have to create the following folder structure:

c:\Inetpub\wwwroot\aspnet_client\

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/13/2008 1:49 AM Balaji Patil
Error:

"Unable to start debugging on the web server. The web server is not configured correctly.
See help for common configuration errors.
Running the web page outside of the debugger may provide further information."

SOLUTION: START->RUN->CMD ENTER-> Type the following

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/15/2008 12:21 PM carol
mine used to work but now it has the same problem as above.
i tried all but this one really helped me:

Log onto the Web server using an administrator account.
From the Start menu, open the Administrative Tools Control Panel.
In the Administrative Tools window, double-click Internet Information Services.
In the Internet Information Services window, use the tree control to open the node named for the Web server.
A Web Sites folder appears beneath the server name.

You can configure authentication for all Web sites or for individual Web sites. To configure authentication for all Web sites, right-click the Web Sites folder and choose Properties from the shortcut menu. To configure authentication for an individual Web site, open the Web Sites folder, right-click the individual Web site, and choose Properties from the shortcut menu
In the Properties dialog box, select the Directory Security tab.
In the Anonymous access and authentication section, click the Edit button.
In the Authentication Methods dialog box, under Authenticated access, select Integrated Windows authentication.
Click OK to close the Authentication Methods dialog box.
Click OK to close the Properties dialog box.
Close the Internet Information Services window.


# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 3/15/2008 3:34 PM hari
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis /i

Run this and it should work fine..thanks

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 3/18/2008 9:16 PM Rupesh Bhatia
Hi All,

Following steps worked for me...

Go to IIS
Right click your virtual directory and select properties.

goto ASP.NET tab and click "Edit Configuration"

select application tab and check the Enable Debugging checkbox....

it worked for me ...best wishes for u guys..


Regards,
Rupesh

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 3/27/2008 6:31 PM adarsh
It worked for me, thanks man

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 4/4/2008 9:12 AM Lakshmi N Viswanathan
This worked for me....

Solution:

From the command prompt; run ASPNET_REGIIS.EXE with -i parameter
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>ASPNET_REGIIS.EXE -i

Source: http://forums.lhotka.net/forums/thread/20953.aspx

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 5/21/2008 10:33 PM Khyati
Thanks! This worked for me too. :-)

Go to IIS and right click on the 'web site' and go to 'properties' and select the 'Home Directory' tab.'' Under 'Execute Permissions', if it's set to 'none' then change it to 'Scripts and Executables'.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 6/11/2008 8:40 PM Baher
Brian Pfau your the man ,
your thing totally worked , cheers mate.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 7/8/2008 7:45 AM Jason Z
The solution by poonster below worked for me after having tried all of the above. Thanks Poonster!

--------------------


Hi all,

I've fixed this problem with these steps :

Right click on your project in VS2005.
Click on Properties
Click on Web tab
Under Servers, click on the radio button Use Visual Studio Development Server
Check Auto Assign Port radio button
Uncheck NTLM Authentication and Enable Edit and Continue

It works for my case

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 7/30/2008 11:00 PM Alain
Hi all,

I have tried every single step from the above, and i restarted my pc couple of times... even tried to restore windows to earlier checkpoints but nothing seemed to work... I've reached a point where i thaught i should format my pc and install everything all over again...

But, i remember that i did something last week in:

I unchecked the "HTTP Keep-Alives Enabled" because i was testing the server under heavy pressure, so the debugger worked when i re-checked this option.

To check this

1 - Open IIS (control panel > administrative tools > internet information services)
2 - Right Click on Default Website choose Properties
3 - Under Connections: make sure the button "HTTP Keep-Alives Enabled" is checked
4 - Click on OK
5 - Check your debugger.

hope this helps

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/28/2008 11:26 PM Rajesh
HI ALL

The above mentioned all settings did not work for me
any further help please......!

Regards
Rajesh CS

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/18/2008 6:23 PM Nitu Sharma
Thanks alot

I have solved my problem.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/24/2008 9:19 AM Vish
The following solution worked for me-:

1 - Open IIS (control panel > administrative tools > internet information services)
2 - Right Click on Default Website choose Properties
3. Go to directory Security Tab
4. Click on Edit under Anonymous Access and Authentication.
5. Check the check-box Integrated Windows Authentication.

Voila!!! It works


# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/25/2008 2:58 AM C.S. Tyagi
i have tried all the above option, but still i m getting the same error, can any one help me.



# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/29/2008 11:32 PM junel
i also have thesame problem im using web developer 2008 version ive tried everything you say but the when i hit the start debugging the page is just plain blank please help

i tried this ones
----------------------------------------------
The following solution worked for me-:

1 - Open IIS (control panel > administrative tools > internet information services)
2 - Right Click on Default Website choose Properties
3. Go to directory Security Tab
4. Click on Edit under Anonymous Access and Authentication.
5. Check the check-box Integrated Windows Authentication.
----------------------------------------------
1 - Open IIS (control panel > administrative tools > internet information services)
2 - Right Click on Default Website choose Properties
3 - Under Connections: make sure the button "HTTP Keep-Alives Enabled" is checked
4 - Click on OK
5 - Check your debugger.
------------------------------------------------
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>ASPNET_REGIIS.EXE -i




# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 10/3/2008 6:33 AM Slackmaster K
For me it was the project Properties / visual studio dev server setting. Thanks.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 11/6/2008 9:45 PM Muhammad Adil
Hello There

Please Follow following steps
1. go to IIS
2. Right Click and go to property of Website.
3. Go to Directory Security.
4. Click Edit button of Anonymous Access and Authentication Control
5. Now Check the Integrated Windows Authentication

Thanks,
Regards
Muhammad Adil
Sr. Software Engineer
www.successCodes.us


# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 11/20/2008 9:19 AM Sirisha S
Thanks Arun Chowdary!!

This is the last step that worked for me.

Right click on your project in VS2005.
Click on Properties
Click on Web tab
Under Servers, click on the radio button Use Visual Studio Development Server
Check Auto Assign Port radio button
Uncheck NTLM Authentication and Enable Edit and Continue



# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 12/1/2008 9:51 PM Sana

This is the only step that worked for me.

Right click on your project in VS2005.
Click on Properties
Click on Web tab
Under Servers, click on the radio button Use Visual Studio Development Server
Check Auto Assign Port radio button
Uncheck NTLM Authentication and Enable Edit and Continue



# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/7/2009 8:41 PM usha
Im getting this error while building ,Please anybody help me ...

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 2/27/2009 6:35 PM Bhavani
Thanks a lot yar...

I entered

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i

in Run command.
and its working for me. :-)





# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 3/28/2009 8:48 AM Atul
I entered

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i

in Run command.
I ran it and the problem is solved. Thanks for the contributuion guys.
Cheers!

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 4/22/2009 7:30 AM SP
Sometimes if you dont specify start project it will happen. Right click on the project that you want to set as start project and select "Set as start project". this should fix the problem

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 4/24/2009 7:33 PM Vimal
I tried everything listed above,

No Luck

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 6/18/2009 6:28 AM subha
Open Project Properties - > Configuration properties -> debugging -> Enable SQL Debugging under Debuggers tab.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 7/8/2009 8:33 AM Hitesh
I have tried all mentioned above, still getting same error.

anyone have any solution to resolve above error.

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 7/21/2009 7:05 AM sobhaa
all option is tried ,but no solution ,plz help me

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 8/17/2009 9:58 AM lalpri
iBow is a leading IT Services company, headquartered in Oslo, Norway with presence across the globe.

IT Solution

# re: ASP.NET 2.0 error: Unable to start debugging on the web server. 9/24/2009 2:21 AM ret
tryrtyr try ry ryrrrtytrytryr ytryrt tr ytrytytryrty tt rytrytr ytrytrytr rtytrytr rt rty rty rty rt tyyrtyrtyr ty trytr rtytrytr yrtytrytrytrytryrtytrytrtrytrytrytrytrytrytrytrytrytrytrytrytrytrytry tryrtyr try ry ryrrrtytrytryr ytryrt tr ytrytytryrty tt rytrytr ytrytrytr rtytrytr rt rty rty rty rt tyyrtyrtyr ty trytr rtytrytr yrtytrytrytrytryrtytrytrtrytrytrytrytrytrytrytrytrytrytrytrytrytrytrytryrtyr try ry ryrrrtytrytryr ytryrt tr ytrytytryrty tt rytrytr ytrytrytr rtytrytr rt rty rty rty rt tyyrtyrtyr ty trytr rtytrytr yrtytrytrytrytryrtytrytrtrytrytrytrytrytrytrytrytrytrytrytrytrytrytrytryrtyr try ry ryrrrtytrytryr ytryrt tr ytrytytryrty tt rytrytr ytrytrytr rtytrytr rt rty rty rty rt tyyrtyrtyr ty trytr rtytrytr yrtytrytrytrytryrtytrytrtrytrytrytrytrytrytrytrytrytrytrytrytrytrytrytryrtyr try ry ryrrrtytrytryr ytryrt tr ytrytytryrty tt rytrytr ytrytrytr rtytrytr rt rty rty rty rt tyyrtyrtyr ty trytr rtytrytr yrtytrytrytrytryrtytrytrtrytrytrytrytrytrytrytrytrytrytrytrytrytrytrytryrtyr try ry ryrrrtytrytryr ytryrt tr ytrytytryrty tt rytrytr ytrytrytr rtytrytr rt rty rty rty rt tyyrtyrtyr ty trytr rtytrytr yrtytrytrytrytryrtytrytrtrytrytrytrytrytrytrytrytrytrytrytrytrytrytrytryrtyr try ry ryrrrtytrytryr ytryrt tr ytrytytryrty tt rytrytr ytrytrytr rtytrytr rt rty rty rty rt tyyrtyrtyr ty trytr rtytrytr yrtytrytrytrytryrtytrytrtrytrytrytrytrytrytrytrytrytrytrytrytrytrytry

Post A Comment
Title:
Name:
Email:
Website:
Comment:
Verification: