iframe aspx pages

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Raul Ochoa
    New Member
    • Dec 2010
    • 1

    iframe aspx pages

    I'm having trouble posting .aspx pages in an iframe. The page will post but once I allow blocked content (IE Security Warning)the page expands into the hole screen. The page will have 6 iframes each posting .aspx pages inside the iframe. Just having trouble keeping the pages inside. Any ideas will be greatly appriciated.

    Current Code
    Code:
    <html>
    <head>
    <script type="text/javascript">
    
    function Reload () {
    var f = document.getElementById('iframe1');
    f.src = f.src;
    }
    
    </script>
    </head>
    <body>
    <iframe id="iframe1" height="200" width="300"
    src="http://google.com"></iframe>
    <br>
    <input type="button" value="Reload" onclick="Reload();">
    <br>
    <iframe id="iframe1" height="200" width="300"
    src="http://google.com"></iframe>
    <br>
    <input type="button" value="Reload" onclick="Reload();">
    </body>
    </html>
    Last edited by jhardman; Dec 21 '10, 02:15 PM. Reason: Accidentally posted in classic asp forum. Moved to asp.net. Added code tags
Working...