I have button, which should open a modal pop up with iFrame
to a page.
Currently the button click opens a PostBackUrl
,
I want a similar thing to happen here.
That is, I want to open the Iframe scr
Page as postbackurl
.
<asp:Button ID="btnCreateComp" runat="server" Text="Create Company" CssClass="button_style"
PostBackUrl="~/Company.aspx" />
<asp:Panel ID="Pnl1" runat="server" CssClass="PanelPopup">
<div>
<iframe id="iframe1" runat="server" height="500px" width="500px" src="" ></iframe>
<asp:Button ID="btnclose" runat="server" Text="Close" CausesValidation="false" />
</div>
</asp:Panel>