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
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>