|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
c++是语言,其实C++和java的应用范围根本就不一样的。在java应用的领域内,c++是不合适的。所以微软才搞了C#和Java对抗。服务器上呈现使用程序毛病。此使用程序确当前自界说毛病设置克制检察使用程序毛病的具体信息。RuntimeError
运转时毛病
Description:Anapplicationerroroccurredontheserver.Thecurrentcustomerrorsettingsforthisapplicationpreventthedetailsoftheapplicationerrorfrombeingviewedremotely(forsecurityreasons).Itcould,however,beviewedbybrowsersrunningonthelocalservermachine.
申明:服务器上呈现使用程序毛病。此使用程序确当前自界说毛病设置克制检察使用程序毛病的具体信息。
Details:Toenablethedetailsofthisspecificerrormessagetobeviewableonremotemachines,pleasecreatea<customErrors>tagwithina"web.config"configurationfilelocatedintherootdirectoryofthecurrentwebapplication.This<customErrors>tagshouldthenhaveits"mode"attributesetto"Off".
具体信息:若要使别人可以从当地服务器盘算机上检察此特定毛病信息的具体信息,请在位于以后Web使用程序根目次下的“web.config”设置文件中创立一个<customErrors>标志。然后应将此<customErrors>标志的“mode”属性设置为“RemoteOnly”。若要使别人可以在远程盘算机上检察具体信息,请将“mode”设置为“Off”。
<!--Web.ConfigConfigurationFile-->
<configuration>
<system.web>
<customErrorsmode="Off"/>
</system.web>
</configuration>
Notes:Thecurrenterrorpageyouareseeingcanbereplacedbyacustomerrorpagebymodifyingthe"defaultRedirect"attributeoftheapplications<customErrors>configurationtagtopointtoacustomerrorpageURL.
正文:经由过程修正使用程序的<customErrors>设置标志的“defaultRedirect”属性,使之指向自界说毛病页的URL,能够用自界说毛病页交换所看到确当前毛病页。
<!--Web.ConfigConfigurationFile-->
<configuration>
<system.web>
<customErrorsmode="RemoteOnly"defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
说句实话,Java跨平台根本就不是外行人想想的那种,一次编译,处处运行。 |
|