开发者

ASP.NET page_load is not firing in IFrame?

In my asp.net web application,I use IFrames to show another page inside one page.But the problem is that the page load event of the embedded page in the IFrame is not firing when the Iframe is shown by clicking on a button in the parent page.I use the IFrame's visibility is true/false to show or hide the Iframe.I am confused what is happening there.开发者_如何转开发Can somebody solve my problem....


What page is the IFrame displaying?

Is it your ASP.NET page?

If it is a different page, you can not expect your Page_Load event to be fired. This is an ASP.NET event raised by the ASP.NET processing pipeline. If you load a different page to the IFrame, it will not raise your Page_Load event and there is no way it could.

You may want to learn about ASP.NET Page Lifecycle here


I use the IFrame's visibility is true/false to show or hide the Iframe

If you're doing this using javascript then your IFrame has already loaded the page and it is just toggling to be visible true.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜