Visual Studio.Net + Windows 2003 = don't work!

  • Thread starter Thread starter Armando Lacerda
  • Start date Start date
A

Armando Lacerda

Hi there,

I've just installed VS.Net on a Windows Server 2003. I've
made a simple web app (ASP.Net) and it doesn't work. The
error message is:

Debugging is not supported under current trust level
settings

Does anybody have a clue about this error?

Thanks!

Armando Lacerda
 
That doesn't mean that "it doesn't work", that means that the debugging
features can't run because of security.

Check to make sure that the ASPNET user account is a member of both the VS
Developers and the Debugger Users groups in Active Directory.
 
Add the following line to the web.config file

<trust level="Full" originUrl="" />

if it does not work make sure the ASPNET account is member of
debuggers and vs developers group.

Good luck

Batman
 
Did you install the SharePoint Portal Server recently? If yes, please look
into the wwwroot folder and see whether there is a "web.config".Rename it or
modify its trust level.
 
Back
Top