0

あるサーバー (正常に動作する) から別のサーバー (正常に動作しない) にアプリケーションをコピー アンド ペーストしています。

コードは変更されていませんが、新しいサーバーでこれを取得します。

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 

[NullReferenceException: Object reference not set to an instance of an object.]
   MasterPagePS_Index.Page_Load(Object sender, EventArgs e) +117
   System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
   System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
   System.Web.UI.Control.OnLoad(EventArgs e) +99
   System.Web.UI.Control.LoadRecursive() +50
   System.Web.UI.Control.LoadRecursive() +141
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
4

3 に答える 3

0

あなたが提供したエラーは多くの情報を提供しません。リモートデバッグを実行し、エラーの原因となっている行を確認することをお勧めします。

または、Global.asaxファイルを追加して、Application_Errorでエラーをキャッチし、エラーを自分宛てに電子メールで送信することもできます。

Dim ex As Exception = Server.GetLastError()
Dim hue As System.Web.HttpUnhandledException = New System.Web.HttpUnhandledException(ex.Message, ex)
Dim html As String = hue.GetHtmlErrorMessage()
' TODO: Send the html string. This will send you the formatted html of the exception including the source of the error and stacktrace.
于 2012-09-20T19:48:46.073 に答える
0

relative pathリソースにアクセスするために in oder を使用しないでください (ファイル、ページ、スタイル、アセンブリなど...)

そのため、ASP.Net はファイルを見つけられず、null 例外をスローします。

于 2012-09-20T19:01:53.060 に答える
0

データベース、ファイル、または外部リソースにアクセスしていますか? 構成に違いがあるようです。web.config を確認してください。

于 2012-09-20T19:02:20.413 に答える