部署的asp.net应用程序中的程序集引用了我的电脑上的绝对路径

时间:2009-10-07 22:06:23

标签: c# dll assemblies reference nullreferenceexception

我不知道为什么会这样:

[NullReferenceException: Object reference not set to an instance of an object.]
   DataWeb.Core.HttpHandler.ProcessRequest(HttpContext Context) in X:\projects\visualstudio\work_projects\Production\DataWeb\DataWeb.Core\HttpHandler.cs:23
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +181
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75

1 个答案:

答案 0 :(得分:2)

我认为你误解了错误信息。路径(X:\ projects ...)就像编译时存储文件的信息一样。它没有从那里引用任何内容,它只是帮助您找到发生错误的位置(在HttpHandler.cs中,第23行)。