打印

求助,网站上上传不了文章?

求助,网站上上传不了文章?

从后台里添加新闻,但是出现了以下错误: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>

这是怎么回事呢?网站是人家做的,我也不太懂,现在制作人又联系不上。。。所以很急。。
哪位朋友能告诉怎么解决呢?非常感谢。。
专用邮箱:xiaodongfeng@126.com
QQ:475951555   支付宝:i-bang@163.com
如果不在,就是找钱去了.这年头,赚钱不容易啊!

TOP

那个朋友帮帮忙。。。。
专用邮箱:xiaodongfeng@126.com
QQ:475951555   支付宝:i-bang@163.com
如果不在,就是找钱去了.这年头,赚钱不容易啊!

TOP