-1

我试图发布我的 ASP.NET 网站。我有一个后端功能,一个 WCF 服务(我认为这不是问题,因为我可以在调试等中访问它)

问题是我将这个网站发布到 WebHotel,这就像一个魅力。发布后,我可以浏览到网站的起始页。但是当我点击提交按钮(登录)时。它抛出错误(请参阅帖子底部)。

webconfig 中的 CustomError 标记多次更改为“Off”、“On”和“RemoteOnly”。它根本没有显示任何特定的错误。

同一个项目以前工作过,但突然出现了。它就像一个乐透。

我还捕获了应用程序和 WCF 服务中的任何错误并将其存储在数据库中,但这些错误都没有出现。

任何想法这是什么?

不知道这是否重要,但我在该域的子域上有另一个 ASP.NET 页面。

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>
4

1 回答 1

0

这是通过反复试验解决的。我将项目上传到的 FTP 服务器出现问题。我认为通过重置 DNS 并重新激活 webhotel 中的域来解决问题以及 FTP 的完全重置。

于 2013-05-25T19:13:24.620 回答