How to close the radwindow on serverside and refresh the parent page
问题 I want to close the RadWindow and refresh the parent : how to do this server side : I have the following case: Two pages say : parent.aspx : <telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableViewState ="false"> </telerik:RadWindowManager> and parent.cs 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