I'm generating the RadWindow in RunTime, I can PopUP but when I use
newWindow.OpenerElementId = OpenerButton.ClientID;
But what I need is to open one alert pop when one exception is generated from Server Side.
I need something to put in:
catch (Exception ex)
{
(Here)
}
My Server Side Code
RadWindow newWindow = new RadWindow();
newWindow.NavigateUrl = "http://www.google.com";
newWindow.Top = Unit.Pixel(22);
newWindow.Left = Unit.Pixel(0);
WindowManager.Windows.Add(newWindow);
//Get a reference to the first window in the list
RadWindow firstWindow = WindowManager.Windows[0];
firstWindow.Modal = true;