为什么不显示消息

发布于 2024-09-14 18:38:14 字数 926 浏览 3 评论 0原文

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

<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 方法。但我看不到消息。为什么不显示消息?

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 the ShowMessage method.But i can not see the message.Why not message show?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凤舞天涯 2024-09-21 18:38:14

你的代码在这里工作得很好。我将您的代码添加到内容页面,单击按钮时会出现确认窗口。所以,问题出在别的地方......恐怕,只有这个代码是不可能帮助你的。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文