开发者

asp ModalPopupExtender load a complet new website?

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜