开发者

asp ModalPopupExtender load a complet new website?

开发者 https://www.devze.com 2023-01-29 16:19 出处:网络
I will use the ModalPopupExtender, I downloaded it and tried a little bit. How can I show a comple开发者_Go百科t new ASP-Page and not only a Panel?You can put an <iframe> element inside your pa

I will use the ModalPopupExtender, I downloaded it and tried a little bit.

How can I show a comple开发者_Go百科t new ASP-Page and not only a Panel?


You can put an <iframe> element inside your panel, load the other page inside that frame and extend the panel with your ModalPopupExtender as usual:

<asp:Panel ID="yourPanel" runat="server">
    <iframe src="yourOtherPage.aspx"></iframe>
</asp:Panel>
<asp:LinkButton ID="yourPopupButton" runat=server />
<ajaxToolkit:ModalPopupExtender ID="yourModalPopup" runat="server"
    TargetControlID="yourPopupButton" PopupControlID="yourPanel" />
0

精彩评论

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