If I have an aspx page (PARENT) which has an IFRAME tage who's src attribute point to another aspx page (CHILD) and on the CHILD page I have AsyncFileUpload control then after uploading a file clicking any button on the CHILD page cause the browser to navigate to the CHILD aspx page, the entire browser window is filled with the CHILD aspx page.
I really need a solution for that, Please help...
Comments: Hey, check the target of the form inside the iframe, after the upload is complete the target is modified to "_top". <form name="aspnetForm" method="post" action="actualURLHERE" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm" enctype="multipart/form-data" target="_top"> to <form name="aspnetForm" method="post" action="actualURLHERE" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm" enctype="multipart/form-data"> gl
I really need a solution for that, Please help...
Comments: Hey, check the target of the form inside the iframe, after the upload is complete the target is modified to "_top". <form name="aspnetForm" method="post" action="actualURLHERE" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm" enctype="multipart/form-data" target="_top"> to <form name="aspnetForm" method="post" action="actualURLHERE" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm" enctype="multipart/form-data"> gl