hi i open radwindow with the following code , my problem is if i set VisibleOnPageLoad=true the code is working but each time the page post back the Radwindow open again if i set VisibleOnPageLoad=false couldn't open radwindow
Dim RW As New RadWindowRW.NavigateUrl = "Search.aspx"RW.VisibleOnPageLoad = TrueRW.Width = New Unit(720, UnitType.Pixel)RW.Height = New Unit(532, UnitType.Pixel)RW.VisibleStatusbar = FalseRW.MaxWidth = New Unit(720, UnitType.Pixel)RW.MaxHeight = New Unit(532, UnitType.Pixel)RW.OnClientClose = "OnClientClose"RW.Modal = TrueRadWindowManager1.Windows.Add(RW)