I have a problem everytime i execute the code to open the radwindow, it open multiple times
1ste time it open 1 time
If i close the windows and execute the the code again i get 2 windows ... and so on
Radwindowmanager:
| <telerik:RadWindowManager ID="Menuradwindow" runat="server"> |
| </telerik:RadWindowManager> |
Execute window :
| Dim newWindow As New RadWindow() |
| newWindow.NavigateUrl = "~/admin/content/delete_page.aspx?PageID=" + panelBarValue |
| newWindow.VisibleOnPageLoad = True |
| newWindow.Width = "550" |
| newWindow.Height = "350" |
| newWindow.Title = "Pagina Verwijderen" |
| Menuradwindow.Windows.Add(newWindow) |
Anyone has a solution to this problem ?