How do I force full post-back from a button within an UpdatePanel?

前端 未结 5 1853
南方客
南方客 2020-12-02 16:28

How do I force full post-back from a button within an UpdatePanel?

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-02 17:16

    You can use the Triggers property of the UpdatePanel to register actions that trigger a full postback.

    Add a PostBackTrigger object to that property, containig the ControlID of the control which needs to trigger a full postback.

    
        
            ...
        
        
            
        
    
    

提交回复
热议问题