How to make page without frames

  • Thread starter Thread starter aa
  • Start date Start date
A

aa

I have one aspx page with datagrid. it is work good
And I have another aspx page where it is maked horizontal menu below invoke
client-side javascript code.
When making the page from 2 frames header(there is menu page) and footer and
when I go on Menu with mouse cursor, the Submenu hides under Footer frame.
Mabe can I solve this problem with one page , but Footer pages is a lot and
dynamic.
How to solve this problem

Thanks
 
Rather than using frames you can embed the footer or any other page "component" in your page. To do this you can use Web User Controls or use SSI (Server Side Includes). SSI are the simplest

<!--#include file="footer.inc"--

Or you can learn all about Web User Controls from here

http://superexpert.com/default.aspx?id=11

Rasika Wijayaratne
 
Back
Top