Click here to Skip to main content
15,671,843 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my web page showing third party page using iframe in that iframe web page submit not working only in IE please help to solve this problem

my aspx page
XML
<asp:Content ID="GetSamples_MainContent" ContentPlaceHolderID="MainContent" runat="server">
    <div class="grid-12">
        <div class="grid-8" id="ssi_frame">
            <div class="margin-left-30px">
                <!--Modified By Q03619 -->
                <iframe width="900" name="ifr_GetSam" height="1350" frameborder="0" src="https://secure.startsampling.com/sm/dependus102702?type=all" ></iframe>
            </div>
        </div>
    </div>
    <div class="clear-both"></div>
    <img src="https://bh.contextweb.com/bh/set.aspx?action=add&advid=1363&token=KIMB1" width="1" height="1" border="0" />
</asp:Content>


inside iframe

XML
<div id="wrapper">
<form id="registrationform" target="ifr_GetSam" style="display:inline" method="post" action="addAddress.iphtml">
<input id="formSubmit" width="132" type="image" border="0" height="30" alt="Submit" src="public/images/btn_submit.jpg">
</form>
</div>
Posted
Updated 15-Apr-14 19:52pm
v3

1 solution

Kindly try this

IFrames don't work in IE7 by default. You have to go to Tools -> Internet Options -> Security Tab -> Custom Level for security zone. Scroll down about 75%, you should find the 'Launching programs and files in an IFrame' option, select 'Enable'. This should allow Iframes to show up. This setting is enabled by default in IE6 but not in 7.
 
Share this answer
 
Comments
PrabhuJiya 16-Apr-14 2:28am    
hi john thanks for your quick response i modified settings and checked but still same problem.

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