为什么不留言显示

时间:2010-08-17 22:20:01

标签: asp.net-3.5 devexpress

我的项目有母版页。在我的内容页面上,我写了下面的语法

<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);
            }
        }

在按钮事件事件下,我调用 ShowMessage 方法。但是我看不到该消息。为什么没有显示消息?

1 个答案:

答案 0 :(得分:0)

您的代码在这里工作正常。我将您的代码添加到内容页面,单击按钮时会出现确认窗口。所以,问题出在其他地方......我担心,只有这个代码才能帮助你。