FANCYBOX IFRAME PENCERESİ İÇİNDE TIKLANAN BUTON SONRASI IFRAME'İN KOD TARAFINDAN KAPATILIP, ASIL SAYFANIN YENİLENMESİ
Asıl Sayfamız
<script type="text/javascript">
$(document).ready(function () {
//fancybox
$(".various").fancybox({
maxWidth: 850,
maxHeight: 650,
fitToView: false,
width: '70%',
height: '70%',
autoSize: false,
closeClick: false,
openEffect: 'none',
closeEffect: 'none',
afterShow: function () {
$('.fancybox-iframe').contents().find('#button').click(function () {
window.parent.location.reload();
});
}
});
});
</script>
Iframe içinde ilgili yere;
Yapılacak işlemler sonrası Fancybox Iframe penceresini kod tarafından kapatmak için aşağıdaki kod kullanılabilir.
ScriptManager.RegisterStartupScript(this, GetType(), "", "parent.$.fancybox.close();", true);