Search This Blog

Monday, December 22, 2014

SharePoint Custom SiteActionMenu- Navigate Custom Application Page

Step 1: Create Sharepoint Project
Step 2: Add New Item Select Elements
Step 3: Peaste the below content and deploy the site
Step 4: Go to SiteActionMenu you have seen the News Page Menu.

<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <CustomAction
     Id="MyCustomAction"
     Description="Navigate custom Application Page."
     Title="News Page"
     GroupId="SiteActions"
     Location="Microsoft.SharePoint.StandardMenu"
     ImageUrl="/_Layouts/Images/images.jpg"
     Sequence="10">
    <UrlAction Url="/_layouts/Pages/News.aspx"/>
  </CustomAction>
</Elements>

No comments:

Post a Comment