删掉了,早就试过了.把web.config删掉了也是同样的错误,真见鬼了.
主要是公司网络管理严格,我这边没权限看那边主机到底怎么做的.

解决方案 »

  1.   

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        
      <system.web>    <!--  DYNAMIC DEBUG COMPILATION
              Set compilation debug="true" to enable ASPX debugging.  Otherwise, setting this value to
              false will improve runtime performance of this application. 
              Set compilation debug="true" to insert debugging symbols (.pdb information)
              into the compiled page. Because this creates a larger file that executes
              more slowly, you should set this value to true only when debugging and to
              false at all other times. For more information, refer to the documentation about
              debugging ASP .NET files.
        -->
        <compilation 
             defaultLanguage="c#"
             debug="false"
        />    <!--  CUSTOM ERROR MESSAGES
              Set customError mode values to control the display of user-friendly 
              error messages to users instead of error details (including a stack trace):          "On" Always display custom (friendly) messages  
              "Off" Always display detailed ASP.NET error information.
              "RemoteOnly" Display custom (friendly) messages only to users not running 
              on the local Web server. This setting is recommended for security purposes, so 
              that you do not display application detail information to remote clients.
        -->
        <customErrors 
        mode="Off" 
        />     <!--  AUTHENTICATION 
              This section sets the authentication policies of the application. Possible modes are "Windows", "Forms", 
              "Passport" and "None"
        -->
        <authentication mode="Windows" />     <!--  APPLICATION-LEVEL TRACE LOGGING
              Application-level tracing enables trace log output for every page within an application. 
              Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
              trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
              application trace log by browsing the "trace.axd" page from your web application
              root. 
        -->
        <trace
            enabled="false"
            requestLimit="10"
            pageOutput="false"
            traceMode="SortByTime"
    localOnly="true"
        />    <!--  SESSION STATE SETTINGS
              By default ASP .NET uses cookies to identify which requests belong to a particular session. 
              If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
              To disable cookies, set sessionState cookieless="true".
        -->
        <sessionState 
                mode="InProc"
                stateConnectionString="tcpip=127.0.0.1:42424"
                sqlConnectionString="data source=127.0.0.1;user id=sa;password="
                cookieless="false" 
                timeout="60" 
        />    <!--  GLOBALIZATION
              This section sets the globalization settings of the application. 
        -->
        <globalization 
                requestEncoding="utf-8" 
                responseEncoding="utf-8" 
       />
       
     </system.web></configuration>
    提示,run time错误,剩下的就是我上面说得
    刚才去和网管说了一下,昨天他改动了权限配置,不知道是不是这个问题
    真郁闷.现在弄得一团糟
      

  2.   

    初步看是权限的问题,可是在iis里面设置了windows集成验证,我想在相应的文件夹设定权限,设定一个组,并使组里的用户可以访问文件夹里的内容.但是如果去掉everyone这个角色就不可以,就会出现上述的错误.如果加上,就可以.我现在想控制一下一个域中的某些用户来访问,应该怎么做?我的方法是:
     <authentication mode="Windows" /> 
        <identity impersonate="true"/>
        <authorization>
          <allow users="servername\test_user" />
          <deny users="*" />
        </authorization>
    这里我想问一下,test_user组里面的角色是域上的用户名还是自己在servername上建立的角色名称?理论上他们的管理应该是一致的吧?那为什么我设定nety="*"的时候会出现登陆输入窗口,并且我输入我的机器名和密码却不好用.而deny="?"的时候就可以直接登陆成功
      

  3.   

    毫不容易找到解决方安了,竟然那么简单,但是没人指点真不行.
    http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=337511
    在这里,谁想看自己连着看吧
      <deny users="?" /><!-- All users must be authenticated -->
          <allow roles="dlcds1004\paiban_user" /><!-- allow only the group members -->
          <deny users="*" /><!-- deny all other window authenticated users -->
    这样还是第一次用,mvp就是牛
    结贴了,谢谢大家