RuntimeError body{font-family:"Verdana"font-weight:normalfont-size:.7emcolor:black} p{font-family:"Verdana"font-weight:normalcolor:blackmargin-top:-5px} b{font-family:"Verdana"font-weight:boldcolor:blackmargin-top:-5px} H1{font-family:"Verdana"font-weight:normalfont-size:18ptcolor:red} H2{font-family:"Verdana"font-weight:normalfont-size:14ptcolor:maroon} pre{font-family:"Consolas","LucidaConsole",Monospacefont-size:11ptmargin:0padding:0.5emline-height:14pt} .marker{font-weight:boldcolor:blacktext-decoration:none} .version{color:gray} .error{margin-bottom:10px} .expandable{text-decoration:underlinefont-weight:boldcolor:navycursor:hand} @mediascreenand(max-width:639px){ pre{width:440pxoverflow:autowhite-space:pre-wrapword-wrap:break-word} } @mediascreenand(max-width:479px){ pre{width:280px} } ServerErrorin‘/‘Application. RuntimeError Description:Anapplicationerroroccurredontheserver.Thecurrentcustomerrorsettingsforthisapplicationpreventthedetailsoftheapplicationerrorfrombeingviewedremotely(forsecurityreasons).Itcould,however,beviewedbybrowsersrunningonthelocalservermachine. Details:Toenablethedetailsofthisspecificerrormessagetobeviewableonremotemachines,pleasecreatea<customErrors>tagwithina"web.config"configurationfilelocatedintherootdirectoryofthecurrentwebapplication.This<customErrors>tagshouldthenhaveits"mode"attributesetto"Off". <!——Web.ConfigConfigurationFile——> <configuration> <system.web> <customErrorsmode="Off"/> </system.web> </configuration> Notes:Thecurrenterrorpageyouareseeingcanbereplacedbyacustomerrorpagebymodifyingthe"defaultRedirect"attributeoftheapplication‘s<customErrors>configurationtagtopointtoacustomerrorpageURL. <!——Web.ConfigConfigurationFile——> <configuration> <system.web> <customErrorsmode="RemoteOnly"defaultRedirect="mycustompage.htm"/> </system.web> </configuration>