문제

i have a site, and made a master page.

this master page shows the footer for 10 pages which are all the same.

However i want one page not to show the footer.

how do i do this?

if i delete the div of the footer, then all the footer are deleted, how do i only delete it from one page. any ideas?

with each master page it comes with header and footer, so i cant disconnect the master page of the site.

is there any css i cane use or anything.

thanks

도움이 되었습니까?

해결책

Write a CSS(display:none) to a specific page for which you want to hide.

Assuming myFooter is the ID of your footer div

PageWithNoFooter.aspx

<style type="text/css">
#myFooter
{
 display:none;
}

</style>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top