Tuesday, March 1, 2016

iframe with external page not working in asp.net

iframe with external page not working asp.net then use object


<object type="text/html" data="http://www.google.co.in" style="width:100%; height:100%">

or


<script>$("#LoadUrl").load("http://www.google.co.in");</script>
<div id="LoadUrl"></div>

or 


Add this to header part of page or master page


<meta http-equiv="X-Frame-Options" content="allow" />


Add this to page body


  <iframe name="myIframe" id="myIframe" style="height: 500px; width: 100%;" runat="server" src="http://google.co.in/"></iframe>