I want to close the RadWindow and refresh the parent : how to do this server side :I have the following case:Two pages say arent.aspx :\[code\]<telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableViewState ="false"></telerik:RadWindowManager>\[/code\]and parent.cs\[code\] protected void OpenNewWindow(string url, int width, int height,int mode) { RadWindow newWindow = new RadWindow(); newWindow.NavigateUrl = url; newWindow.VisibleOnPageLoad = true; newWindow.KeepInScreenBounds = true; if (width > 0) { newWindow.Width = width; } if (height > 0) { newWindow.Height = height; } newWindow.VisibleStatusbar = false; if (mode == 0) { newWindow.DestroyOnClose = true; newWindow.InitialBehaviors = WindowBehaviors.Maximize; } RadWindowManager1.Windows.Add(newWindow); }\[/code\]i call this method in the rowcommand of some gridview on my parentpage :like this :\[code\]OpenNewWindow("child.aspx", 0, 0,0);\[/code\]Now i want on the server side click event of some button on the \[code\]child\[/code\] page to close the rad window and refresh the parent one how to do this ??