what most of us do is somethign like what you said. Every page has this.
<table>
<tr>
<td colspan=2><header_here></td>
</tr>
<tr>
<td><left_menu></td>
<td>Page Info Goes Here</td>
</tr>
<tr>
<td colspan=2><footer_here></td>
</tr>
</table>
The controls you created for header/footer/menu are dropped onto each page
but you only have them in one location for modifying.
--
Curt Christianson
Owner/Lead Developer, DF-Software
Site:
http://www.Darkfalz.com
Blog:
http://blog.Darkfalz.com
"mglover" <> wrote in message
news:41013715$...
> ok i've made my include statements into .ascx files and they are
> working fine. in fact, everything looks great, but the information
> in the .aspx pages lays right on top of the user controls...
>
> how do i orient the .aspx pages to fit around the user controls (ie
> under and to the right of the header, and above the footer)? i could
> manually move all the elements so that they fit, but then i might as
> well just build the header right into all the pages...
>
> (the include statements from the old, html pages had a table built
> right into them where the pages loaded to avoid this. my new
> "header"/user control also has this, if this helps)
>
> could you guys please help? i appreciate all the help so far!
>