为什么不显示消息
我的项目有母版页。在我的内容页面上,我编写了以下语法。
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的代码在这里工作得很好。我将您的代码添加到内容页面,单击按钮时会出现确认窗口。所以,问题出在别的地方......恐怕,只有这个代码是不可能帮助你的。
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.