Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to display my web page in a popup inside an iframe. I cant figure out what the problem is its not working. I am using the following code.
XML
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
<div>
 <asp:Button ID="btnNewParty" runat="server" Text="New Party" />

<cc1:ModalPopupExtender ID="m1"  runat="server" TargetControlID="btnNewParty" BackgroundCssClass="ModalPopupBG" Drag="true" CancelControlID="btnCancel" DropShadow="true" OkControlID="btnOkay" PopupDragHandleControlID="PopupHeader" PopupControlID="Panel1">
        <asp:Panel ID="Panel1" Style="display: none;" runat="server" ScrollBars="Auto">

<iframe style="width: 350px; height: 300px;" id="ifrm1"  runat="server" src="MPMST.aspx" frameborder="no"
    scrolling="yes"></iframe>
<br />
<asp:Button ID="Button2" runat="server" Text="Close" />  
</div>


Most of the links have given the same code.I m doing exactly the same but still its not working.
m not using update panel also.
Newparty.aspx is a simple web page without master page.Am i missing something?
i used Style="display: block;" also for panel.But the popup itself doesnt appear.

Help me.
Posted
v5
Comments
Karthik_Mahalingam 10-Dec-13 1:50am    
Style="display: none;"

make the style as block

Style="display: block;"
What is exactly hapenning?
pwavell 10-Dec-13 2:45am    
when i click the button page just gets refreshed.if i use a div from same page instead of i frame popup appears.
thatraja 10-Dec-13 3:14am    
Show the code-behind(include that in your question)
pwavell 10-Dec-13 3:20am    
i have not written anything in code behind on button click.

1 solution

How a div is being open as a pop up. please paste that code. If your div opens the pop up then just keep the iframe inside the div. To create a iframe as a pop up you can follow the below link http://www.codeproject.com/Tips/646469/Web-Modal-Window-Using-IFrame
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900