Server Error in '/' Application.
--------------------------------------------------------------------------------Runtime Error 
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File --><configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
 Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File --><configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
上面是我的报错信息。我在web.config里面是这样写的:
<customErrors mode="On"/>我做了一个小东西,放在公司的内网了,人稍微多了一点去点击这个站点就报这个错误,我也看不出这个是什么问题,有哪个大虾知道的可以帮一下么?
我们内网的服务器上有设置远程登录的人数,一超过2个就会提示连接数人过多,跟这个有没有关系呢?我跟网络工程师聊过这个。他说跟这个没有关系。所以我也没有头绪了。。不知道是为什么谁能帮一下呀?万分感激...