更新パネル内にグリッドビューがある ASP.Net ページがあります。サーバー上でアプリケーションを実行すると、グリッドビューは完全に正常に動作します。行を選択して詳細ビューに情報を表示することができ、グリッドビューで直接削除することもできます。
ただし、ページをホストして外部からアクセスしようとすると、グリッドビューのリンクボタン (ページング、並べ替え、選択、削除) が機能せず、ページは静的です。これは、すべてのブラウザー (Safari、IE、Firefox、Chrome) で発生します。
問題が何であるかを確認するためにfirebugでチェックしてみましたが、これが得られたものです:
Sys.WebForms.PageRequestManagerServerErrorException:
Sys.WebForms.PageRequestManagerServerErrorException:
An unknown error occurred while processing the request on the server. The status code returned from the server was: 500
case "error":
this._endPostBack(this._createPageRequestManagerServerError(Number.parseInvariant(deltaNode.id), deltaNode.content), executor, null);
return null;
case "pageTitle":
document.title = deltaNode.content;
break;
誰かが私にこれが起こる原因を説明してもらえますか?
ありがとうございました!