As far as I know, barring the use of iframes, there is no way to load one aspx page into another.
<div style="width: 100%;">
    <div style="width: 20%; float: left;">test</div>
    <div style="width: 80%; float: left;">
        <iframe frameborder="0" width="100%" height="800px" src="Default.aspx"></iframe>
    </div>
</div>