Inherits="JTCRM._default" 
这个路径有问题吧,

解决方案 »

  1.   

    我本机上可以的,说明不是路径的问题,我想使我服务器上config文件没有放到根目录的原因。但我现在放到根目录了还是不行,错误为:
    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>
     
      

  2.   

    是你的web。config配置的问题,你根据他的提示修改一下阿!
      

  3.   

    <customErrors 
        mode="RemoteOnly" 
        /> 改成RemoteOnly
      

  4.   

    把这个JTCRM._default改一个名字试一试~~
      

  5.   

    dll 文件拷到bin目录里吗?
      

  6.   

    lionzhf(忆昔) 没有用的,以前就是mode="RemoteOnly" ,我为了能看到错误详细信息,改成Off的,有没有其他原因?我在我自己机器上没有问题的 ,但在服务器就报这样的错,我服务器不在本地,我又不能现场调试。该怎么办那?!
      

  7.   

    没有数据库,就是个页面都不行,dll 文件拷到bin目录里了。