I have a https site, use radwindow to open another window on the same https site.
On the main window I have the below code.
function Sel_OnClientClose(sender, eventArgs) { top.location.href = top.location.href; } <telerik:RadWindowManager ID="radWindowManager" runat="server" IconUrl="/img/radwindowicon.gif" Style="z-index: 7001"> <Windows> <telerik:RadWindow ID="wndSelectAccount" runat="server" Modal="true" KeepInScreenBounds="true" height="450px" Width="700px" Animation="Fade" AutoSizeBehaviors="Default" ShowContentDuringLoad="true" VisibleStatusbar="false" NavigateUrl="/SelectAccount.aspx" OnClientClose="Sel_OnClientClose" /> </Windows> </telerik:RadWindowManager>On the top window, I use alert(location.href) when window load, can see it is https also. Not sure why we got the warning message when both main and top window are https?
Please help!!
Thanks!!