asp.net+access 做得网站,本地测试成功
传到网上后,显示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>
我将其该成:
<!-- Web.Config Configuration File --><configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
后问题依然是这样我用的是虚拟服务器,是不是服务器提供商的空间上不支持asp.net的程序的原因,还是其没有给开通数据库的写权限?access数据库有没有写权限,我已将access数据库的只读属性去掉了,我的虚拟空间是新网的魔方主机。另外,请问asp.net的程序,上传时如何配置,web.config文件?

解决方案 »

  1.   

    你把<customErrors mode="Off"/>改成<customErrors mode="On"/>
    就知道错在哪里了<configuration>
        <system.web>
            <customErrors mode="On"/>
        </system.web>
    </configuration>
      

  2.   

    错误被屏蔽掉了 
    改成<customErrors mode="On"/>显示错误发布时web.config文件放根目录<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    是发生错误后的跳转页面。