I am working on a web project. I divided the page in the ratio 40:60 using <frameset> tag and the screen looks like this,

When I click on any of the links “salesplan”,”tracking”,”reports” the corresponding page will be displayed in the remaining 60% screen portion. like this,

and follows….
Now if I click on a logout page, logout message will be displayed on the next frame….(60% of the screen). But i want to display this page in entire screen i.e, 100% screen instead displaying it in target frame.
How can I achieve it?
Add
target="_top"to your link:The
targetattribute can be used to direct links to another location, other than your current frame. If you want to load the link in another frame instead of the top page, usetarget="framename", whereframenameis the value of thenameattribute of the frame.