My Project have master page .On my content page i write the bellow syntax
<dx:ASPxPopupControl ID="ASPxPopupControlUserRole" runat="server" CloseAction="CloseButton" 
    EnableClientSideAPI="True" HeaderText="Confirmation" Modal="True"  
    PopupHorizontalAlign="WindowCenter" PopupVerticalAlign="WindowCenter"
    ShowCloseButton="True" AllowDragging="True" EnableViewState="False">
    <ContentCollection>
<dx:PopupControlContentControl runat="server"></dx:PopupControlContentControl>
</ContentCollection>
</dx:ASPxPopupControl>
  private void ShowMessage(String Message)
        {
            if (Message != "")
            {
                PopupWindow Winddow = new PopupWindow(Message);
                Winddow.ShowOnPageLoad = true;
                ASPxPopupControlUserRole.Windows.Add(Winddow);
            }
        }
Under the button event event i call t开发者_开发问答he ShowMessage method.But i can not see the message.Why not message show?
Your code works fine here. I added your code to the content page and the Confirmation window appears when a button is clicked. So, the problem is somewhere else... I am afraid, it is impossible to help you having only this code.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论