Ошибка null ссылки на объект в веб-конфигурации.
Всем Привет,
Когда я пытаюсь получить доступ к своей веб-странице, произошла следующая ошибка. Я не знаю, почему здесь произошла эта ошибка. Все ответы приветствуются.
Server Error in '/PreProcess' Application. Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. Source Error: The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL: 1. Add a "Debug=true" directive at the top of the file that generated the error. Example: <%@ Page Language="C#" Debug="true" %> or: 2) Add the following section to the configuration file of your application: <configuration> <system.web> <compilation debug="true"/> </system.web> </configuration> Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode. Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario. Stack Trace: [NullReferenceException: Object reference not set to an instance of an object.] Suncor.Framework.UI.BasePage.get_MessagePanelMasterProperty() in D:\Refining_and_Marketing\Utilities\RMWebTkt.net\trunk\Code\ApplicationSource\RMWebTkt.Net4\Framework\Suncor.Framework.UI\BasePage.cs:242 Suncor.Framework.UI.BasePage.get_MessagePanel() in D:\Refining_and_Marketing\Utilities\RMWebTkt.net\trunk\Code\ApplicationSource\RMWebTkt.Net4\Framework\Suncor.Framework.UI\BasePage.cs:249 Suncor.Framework.UI.BasePage.AddBulletedMessage(String message, Object[] args) in D:\Refining_and_Marketing\Utilities\RMWebTkt.net\trunk\Code\ApplicationSource\RMWebTkt.Net4\Framework\Suncor.Framework.UI\BasePage.cs:278 Suncor.Framework.UI.BasePage.AddErrorMessage(String message, Object[] args) in D:\Refining_and_Marketing\Utilities\RMWebTkt.net\trunk\Code\ApplicationSource\RMWebTkt.Net4\Framework\Suncor.Framework.UI\BasePage.cs:289 Suncor.Framework.UI.BasePage.OnError(EventArgs e) in D:\Refining_and_Marketing\Utilities\RMWebTkt.net\trunk\Code\ApplicationSource\RMWebTkt.Net4\Framework\Suncor.Framework.UI\BasePage.cs:414 System.Web.UI.Page.HandleError(Exception e) +86 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +8422 System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +253 System.Web.UI.Page.ProcessRequest() +78 System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +21 System.Web.UI.Page.ProcessRequest(HttpContext context) +49 ASP.cardordering_monerisreceiptproxy_aspx.ProcessRequest(HttpContext context) +4 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +100 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75
Спасибо,
НЕ ЗНАЮ
Что я уже пробовал:
Измените режим компиляции в web cofig.
F-ES Sitecore
Этот вопрос задают несколько раз в день. Пожалуйста, погуглите сообщение об ошибке, прежде чем отправлять вопрос.
Dhineshkumar Velmayil
вы можете отправить ссылку на ответ на вопрос. Я тоже старался.
Но большинство людей, столкнувшихся с проблемой MAC, потерпели неудачу. Но в моем сценарии ни один MAC не вышел из строя. Вот почему я здесь, мой дорогой друг.
F-ES Sitecore
Мы не можем получить доступ к вашему коду или запустить ваш сайт, поэтому мы ничего не можем сделать, вам нужно будет использовать отладчик, чтобы точно отследить, что вызывает ошибку. Из стека проследите что-нибудь в "get" для MessagePanelMasterProperty на вашей базовой странице. Вероятно, он обращается к элементу управления и использует его, прежде чем проверить его существование, но это всего лишь предположение.
Dhineshkumar Velmayil
Спасибо за ваш ответ. Мой код локально работает очень хорошо. Но когда мы переходим на сервер, Эта проблема возникает. (только dll перемещаются на сервер). В любом случае, еще раз спасибо.
НЕ ЗНАЮ