在公司内部网站运行好好的,可是搬到了虚拟主机,后动态网页访问不了!静态的还行.动态网页出出现如下错误:
在此之前,在某个网站注册了一下,度了一下虚拟主机,刚开始也是这样,不过,该网站的内部人员不知道怎么调试了一下就正常了.
现在正式买了一台虚拟主机却又出现了这种情况,别人说我的程序有问题,但是我在本机运行正常啊,还有在一次试用虚拟主机上,刚开始不行,最后还是正常了.
想问一下各位大虾,出现这种情况,会是哪些原因呢?
在此谢过了,谢谢!.....
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>