SharePoint (2003 thru Online): HTML
Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Wednesday, July 9, 2014

Menu Links to open in same tab of Internet Explorer


To open the link in same tab of Internet explorer.

<asp:menuitem navigateurl="http://projects.spdev.com/HR/Pages/Mission.aspx"
              text="<h4><br/>Mission<br/><br/></h4>"
              tooltip="Mission" target="_self"/>
_________________________________________________________________________________

To open the link in another tab of Internet explorer.
           
<asp:menuitem navigateurl="http://projects.spdev.com/HR/policies/default.aspx"
              text="<h4>Policies & Forms<br/><br/></h4>"
              tooltip="Policies & Forms" target="_blank"/>
_________________________________________________________________________________