Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi guys,

i have a asp.net page where i'm invoking another page using fancyBox.

FancyBox
<script type="text/javascript">
       $(document).ready(function () {
           $(".Display").fancybox({
               'padding': 0,
               'width': 600,
               'height': 200,
               'autoScale': true,
               'transitionIn': 'none',
               'transitionOut': 'none',
               'type': 'iframe',
               'scrolling': 'no',
               'hideOnOverlayClick': false,
               'showCloseButton': true
           });
       });
   </script>

<a class="Display" href='<%# String.Format("UpdateDifferences.aspx?RegNo={0}&Status={1}&FileDate={2}", Eval("RegNo") , Eval("Status") , Eval("File_Date")) %>'><asp:ImageButton ID="imgView" Visible="true" runat="server"
                       ToolTip="Edit" ImageUrl="~/images/Edit.png"
                       Width="20" Height="20" />  
                     </a>


from PageA Invoking PageB(fancybox) 1s update is done i want to close the PageB(fancybox), once pageB is closed automatically PageA will get active, on 
active i want to refresh the pageA.


1) how to close the fancy box once update is done.
2) how to refresh the page when its get active.

can anyone please help me.

Thanks
Posted
Updated 20-Dec-14 20:35pm
v2
Comments
DamithSL 21-Dec-14 2:25am    
update the question with related code

1 solution

There is no such thing 'active'/'inactive' when you are working with web pages inside a browser. What get activated is the web browser window hosting your page, but your page get no events on that...
What you can do is use the opener property of your PageB to call a refresh function on PageA...
https://developer.mozilla.org/en-US/docs/Web/API/Window.opener[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900