Debugging problem.

P

Phoebe.

Hi, Good Day!

I wonder why i can't debug my ASP.Net program. I do checked the "ASP.Net
debugging" under configuration properties but there's an error pop out when
i try to run my program.

Below is the error message:
"Error while trying to run project: Unable to start debugging on the web
server. You do not have the permissions to debug the server.

Verify that you are a member of the 'Debugger Users' group on the server.
Would you like to disable future attempts to debug ASP.NET pages for this
project?"

Can someone help?

Thanks in advanced.

rgds,
Phoebe.
 
S

srinivas moorthy

Hi

Here is the cause for that problem. Before doing the below
steps just check your configuration settings and also the
web.config file. In Web.Config File set the debug to True.
if Still the problem occurs. Here is the answer for that
which the article given at Visual Studio.Net MSDN. I just
copied the required information for you.

----------------------------------------------------------
Symptoms
When you try to debug a Microsoft ASP.NET Web Application
project that was created by using the IP address or full
computer name for the location, you may receive the
following error message:

Error while trying to run project: Unable to start
debugging on the Web server. You do not have permissions
to debug the server.

Verify that you are a member of the 'Debugger Users' group
on the server. Would you like to disable future attempts
to debug ASP.NET pages for this project?

Cause
Using the IP address or full computer name (including the
domain) maps the URL to the Internet zone in Microsoft
Internet Explorer. If your security settings for the
Internet zone are not set to Automatic logon with current
username and password, authentication may be unsuccessful
and you may receive this error message.


Resolution
To work around this issue, do one of the following:

Do not use an IP address or full computer name (for
example, computername.domainname.coname.com) when you
create your ASP.NET Web Application project. Instead, you
can use either "localhost" or the computer name without
the domain name (for example, computername).


Change the security settings for the Internet zone in
Internet Explorer to use Automatic logon with current
username and password. To do this:


Open Internet Explorer. On the Tools menu, click Internet
Options.


On the Security tab, click to select Internet in the list
of Web content zones, and then click Custom Level.


Scroll to the bottom of the Settings list. Under User
Authentication, locate Logon, and then click to select
Automatic logon with current username and password.
 
P

Phoebe.

Thanks Srinivas,

I do follow the resolution but the same error message(the one that i
mentioned below) pops out again.
Is there any other solution.

Thanks in advanced.

rgds,
Phoebe.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top