As for the home page
I have a web application. In that I have a link called "Home". When the user clicks on the start page of the web application, the index.jsp should be displayed on the same page. How can i do this. It should work in Internet Explorer.
I have the following html page.
<html>
<body bgcolor="#FFF8DC">
<a href="index.jsp" target="parent" >HOME</a>
</body>
</html>
But it doesn't work.
source to share
See http://htmlhelp.com/reference/html40/special/a.html
The TARGET attribute is used with frames to specify the frame in which the link should be displayed. If no frames with that name exist, the link is displayed in a new window, unless the user overrides it. Special frame names start with an underscore:
* _blank renders the link in a new, unnamed window
* _self renders the link in the current frame (useful for overriding a BASE TARGET)
* _parent renders the link in the immediate FRAMESET parent
* _top renders the link in the full, unframed window
In HTML 4, the TARGET attribute value is case-insensitive, so _top and _TOP have the same meaning. However, most browsers treat the value of the TARGET attribute as case sensitive and do not recognize _TOP as having the special meaning of _top.
source to share