Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1139
WebDialogWindow lost formatting
posted

I've a web dialog on a page that is called from server side code in two places.  One of the places when called, the web dialog displays normally.

But from the 2nd place, the text and buttons are displayed, but the dialog box is hidden. 

try
{
    client.Send(message);
    DialogTitleLabel.Text = "Notice's Sent";

    DialogMessageLabel.Text = "Notices sent to the 6 notice recipients";
    DialogWebDialogWindow.WindowState = Infragistics.Web.UI.LayoutControls.DialogWindowState.Normal;
}

The only difference is here I'm calling it after sending an e-mail out.  Any suggestions??