I'm working with the RadWindow, and all is OK - except, on the close of the RadWindow;
If an unrelated button is clicked on the same web page, the RadWindow re-appears as a popup;
I'm writing to ask if the RadWindow can be disposed of - after intended utilization;
The DestroyOnClose, and Dispose, methods did not resolve the issue of the popup window re-appearing after intened use;
If an unrelated button is clicked on the same web page, the RadWindow re-appears as a popup;
I'm writing to ask if the RadWindow can be disposed of - after intended utilization;
The DestroyOnClose, and Dispose, methods did not resolve the issue of the popup window re-appearing after intened use;
//Set its properties rw1.Width = Unit.Pixel(400); rw1.Height = Unit.Pixel(400); //rw1.NavigateUrl = "http://www.google.com"; rw1.NavigateUrl = "PopupFileUpload.aspx"; //Make sure that the window will be shown after the postback rw1.VisibleOnPageLoad = true; //Add it to the RadWindowManager's Windows collection RadWindowManager1.Windows.Add(rw1);<telerik:RadWindowManager ID="RadWindowManager1" runat="server"> <Windows> <telerik:RadWindow ID="Window1" runat="server" NavigateUrl="PopupFileUpload.aspx"/> </Windows> </telerik:RadWindowManager>