ウェブフォームで Rad Ajax マネージャー RadAjaxLoadingPanel を使用しています。
私のフォームには 2 つのパネルがあり、Panel1 には Create account コントロールがあり、別の Panel2 にはサンキュー ノートがあります。
ユーザーがアカウントを正常に作成したら、パネル 1 を非表示にしてパネル 2 を表示する必要があります。ResponseEnd メソッドを使用して、メソッドの下の Javascript を使用して表示/非表示を行います。
function ResponseEnd(sender, arguments) {
//hide the loading panel and clean up the global variables
if (currentLoadingPanel != null) {
currentLoadingPanel.hide(currentUpdatedControl);
}
ShowTY();
currentUpdatedControl = null;
currentLoadingPanel = null;
}
function ShowTY(){
document.getElementById('<%= Panelty.ClientID %>').style.visibility = "visible";
document.getElementById('<%= Panelty.ClientID %>').style.display = "block";
document.getElementById('<%= Panelsu.ClientID %>').style.visibility = "false";
document.getElementById('<%= Panelsu.ClientID %>').style.display = "none";
}
ユーザーが既に存在する場合、または db サーバー エラーが発生した場合は、Panel1 の表示エラー メッセージをラベルに表示する必要があります。
サーバーの応答を知る方法、またはこの問題を処理する方法を教えてください.....すぐに返信してください
ありがとう