Refresh main page
-
Hi all i need to refresh the whole page when pressing a button inside an iframe. i have a page View inside View.aspx i have an iframe named folder when i press save inside folder i return an id. I need to refresh the whole page (View.aspx) and pass querystring id to Iframe Folder. Any help, thanks
-
Hi all i need to refresh the whole page when pressing a button inside an iframe. i have a page View inside View.aspx i have an iframe named folder when i press save inside folder i return an id. I need to refresh the whole page (View.aspx) and pass querystring id to Iframe Folder. Any help, thanks
how about
window.parent.document.form[0].submit
?? You need to find the form from window.parent which represents the original page where Iframe is in. :)Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.
-
how about
window.parent.document.form[0].submit
?? You need to find the form from window.parent which represents the original page where Iframe is in. :)Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.