Create a Custom Action in Site Action\Settings in SharePoint 2013
Visual Studio 2012--> SharePoint 2013 Project -->Right Click on the Project ---> Add New Item-->Empty Element
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<CustomAction
Id="NewID"
GroupId="SiteActions"
Location="Microsoft.SharePoint.StandardMenu"
Sequence="2000"
Title="My
Link"
Description="Create
My Link" >
<UrlAction Url="~/_layouts/15/Test.aspx"/>
</CustomAction>
</Elements>
Hope this will helps you...
Happy Coding...
Comments
Post a Comment