Modalpopup extnder in an ifarme
-
Hi All, I've a page as shown below ------------------------------ -------HEADER ------------------------------ ---MENU---IFRAME When I click on menu the iframe part loads with new page in the iframe. Now the problem is, there is one Ajax Modalpopup extender in the iframe page. when I show the modalpopup It shows only within the Iframe. How can I bring the modalpopup window out side the iframe(I want to cover the modalpopup in the entire window.). I'm stuck with this in last 3 days... Thanks in advance...
-
Hi All, I've a page as shown below ------------------------------ -------HEADER ------------------------------ ---MENU---IFRAME When I click on menu the iframe part loads with new page in the iframe. Now the problem is, there is one Ajax Modalpopup extender in the iframe page. when I show the modalpopup It shows only within the Iframe. How can I bring the modalpopup window out side the iframe(I want to cover the modalpopup in the entire window.). I'm stuck with this in last 3 days... Thanks in advance...
Actually IFrame loads the entire page within a page, I think if you load the same inside a div or normal dom object except frames, the problem will be solved. Otherwise, you can use modalpopup extender in the outer page.
Abhishek Sur My Latest Articles Basics on LINQ and Lambda Expressions
Create .NET Templates -
Actually IFrame loads the entire page within a page, I think if you load the same inside a div or normal dom object except frames, the problem will be solved. Otherwise, you can use modalpopup extender in the outer page.
Abhishek Sur My Latest Articles Basics on LINQ and Lambda Expressions
Create .NET TemplatesAbhishek Sur wrote:
if you load the same inside a div
How do I load a aspx page inside a div(without iframe)? or is there any other alternatives for iframe.
-
Abhishek Sur wrote:
if you load the same inside a div
How do I load a aspx page inside a div(without iframe)? or is there any other alternatives for iframe.
Just paste the response that comes from the ajax request to a DIV.. like
div.innerHTML = ajaxobj.responseText;
Abhishek Sur My Latest Articles Basics on LINQ and Lambda Expressions
Create .NET Templates