

<iframe id="ifmain" name="ifmain" width="100%" frameborder="0" src="Main.aspx" onload="this.height=100"
scrolling="no"></iframe>
<script type="text/javascript">
//Iframe自适应高度
function reinitIframe() {
var iframe = document.getElementById("ifmain");
try {
var bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight, dHeight);
iframe.height = height;
} catch (ex) { }
}
window.setInterval("reinitIframe()", 200);
</script>