检查是否将当前用户加入aspnet调试组.
最好把ASPNET用户设置为超级管理员

解决方案 »

  1.   

    Please check whether “Enable HTTP Keep Alives” option of IIS is checked or not. If it is turned off, you may need to turn it on and try your debugging again
      

  2.   

    · Cause 1: Make sure that “Integrated Windows Authentication” is enabled. Probably, you enabled only “Basic authentication” for Directory security of IIS.  · Cause 2: If you are using “Integrated Windows authentication”, you need to make sure that your user account has full control on the directory of the IIS. · Cause 3: If you created the web project with a full machine name (like “machinename.domainname.something”), the web site is recognized as “Internet” site. So the default setting of IE will impact on the behavior of log on. In this case, you need to enable logging on with your current user account in “Internet” area with IE setting. But it is not the default setting of IE, so you’d be better off if you create project with only the machine name. 
      

  3.   

    试试新开一个帐号,并授予权限.用这个帐号登陆,然后运行.net2003.应该可以的.我的机子也是这样.不过用回原来的帐号就还是不行..
      

  4.   

    Try:
    根据设计,ASP.NET 要求对根 Web 站点上或任何虚拟目录上的 ASPNET 帐户(Aspnet_wp.exe 进程帐户)具有读取、执行和列出访问权限。这是必需的,以便 ASP.NET 可以访问内容文件并可以监视文件更改。 
    解决方案
    若要为根 Web 站点上或任何虚拟目录上的 ASPNET 帐户添加读取、执行和列出访问权限,请执行以下步骤:
    在 Windows 资源管理器中,浏览到包含根 Web 站点(默认情况下是 C:\Inetpub\Wwwroot)或虚拟目录的文件夹。
    右键单击该文件夹,然后单击属性。
    在安全性选项卡上,单击添加。
    键入计算机名\ASPNET(例如,在名为 Webdev 的计算机上,键入 Webdev\ASPNET),然后单击确定。
    允许以下 ASPNET 帐户权限:
    读取并执行
    列出文件夹内容
    读取单击确定以关闭属性对话框并保存所做更改。
    备注:如果 Everyone 组或用户组已具有对根 Web 站点或虚拟目录的读取访问权限,则无需执行这些步骤。