0

在计算复杂的公式服务器端后,我必须显示客户端确认。就像是

//Server side
        On ButtonClick(){
            FetchRate(field1,field2,.... fieldn);
            // Show Client side confirmation
            // Execute server side code if confirmed client side 
    }

我所做的是创建了一个客户端功能,但无论我选择什么客户端,我的服务器端代码总是在回发时执行

// Server side    
ScriptManager.RegisterStartupScript(this,this.GetType(), Guid.NewGuid().ToString(), "ConfirmAction('"+ myRate +"');", true);
//Client side
    function ConfirmAction(myRate) {
            if (confirm('Are you sure?. Rate is exceeding '+ myRate +', proceed ?')) {
                document.getElementById('hfSaveUpdate').value = 1;
                return true;
            }
            else
                return false;
        }
4

3 回答 3

2

您不能在服务器端代码之间放置客户端操作。

您的代码准备客户端确认,但在响应完成之前不会将其发送到浏览器。然后服务器立即继续处理您的数据。完成后,响应将发送到浏览器,用户会看到确认对话框。太晚了:数据已经被处理过了。并且对话的结果永远不会被发送到服务器。

您需要将该过程分成两部分:首先获得有关该费率的确认(可能使用 ajax),然后提交要处理/存储的表单。

于 2013-01-31T13:22:40.247 回答
2

您可以使用Ajax 模型弹出窗口并处理其确定和取消按钮。

<ajaxToolkit:ModalPopupExtender ID="ModelPopupID" runat="server"  
    TargetControlID="LinkButton1"  
    PopupControlID="Panel1"  
    BackgroundCssClass="modalBackground"   
    DropShadow="true"   
    OkControlID="OkButton"   
    OnOkScript="onOk()"  
    CancelControlID="CancelButton"   
    PopupDragHandleControlID="Panel3" />  

从服务器代码启动模态弹出窗口:

服务器端代码:

ClientScript.RegisterStartupScript(this.GetType(), "key", "launchModal();", true);

客户端代码:

<script type="text/javascript">
 var launch = false;
 function launchModal() 
 {
 launch = true;
 }
function pageLoad() 
 {
 if (launch) 
 {
 $find("ModelPopupID").show();
 }
 }
</script>

在模型弹出窗口的确定单击上,在构造代码之后执行服务器端。单击取消按钮时,只需隐藏模型弹出窗口。

有关更多详细信息,请检查以下内容:

ModalPopup 教程

于 2013-01-31T13:27:35.837 回答
0

你可以onclientclick attribute在你的按钮上设置

链接: http: //msdn.microsoft.com/fr-fr/library/system.web.ui.webcontrols.button.onclientclick (v=vs.80).aspx

于 2013-01-31T13:17:21.630 回答