Hi,
I had a page called (http://jessie.domain.com/MyPage).
Inside this page, I had a link A to click, after click this link A, it will pop up a page with RadWindow called (Details.aspx).
Inside this Details.aspx, there have a Cancel button. When I click this cancel button, it will hits the error (Access is denied).
May I know how to solve this problem? Thanks.
I had a page called (http://jessie.domain.com/MyPage).
Inside this page, I had a link A to click, after click this link A, it will pop up a page with RadWindow called (Details.aspx).
Inside this Details.aspx, there have a Cancel button. When I click this cancel button, it will hits the error (Access is denied).
| <script type="text/javascript"> | ||
| function GetRadWindow() { | ||
| var oWindow = null; | ||
| if (window.radWindow) { | ||
| oWindow = window.radWindow; | ||
| } | ||
| else if (window.frameElement.radWindow) { | ||
| oWindow = window.frameElement.radWindow; | ||
| } | ||
| return oWindow; | ||
| } | ||
| function RefreshParentPage() { | ||
| GetRadWindow().Close(); | ||
| GetRadWindow().BrowserWindow.location.href = GetRadWindow().BrowserWindow.location.href; | ||
| } | ||
</script>
|
May I know how to solve this problem? Thanks.