Skip to main content

How to add Links in the Document Library

Yes have been a while didn't have a post...
It is getting harder to create post, because everybody is creating excellent posts on different areas and don't want to repeat info but...
I was surprised by the quantity of persons that don't know and asking me how to configure the Document Library to have links,
i know this not that hard topic and you already know some posts talking about this, so i will create this guide for this persons that are learning on SharePoint.

To start we need to access our Document Library and select the Ribbon option Library Settings if you have the correct permissions.

After you access the Library settings you will need to access Advanced Settings.

On Advanced Settings you will have the option “content Types” you will need to select the option “Allow management of content types” as “Yes”, this will allow you to add more content types to your Document Library.

After you accept this option you can add the Content types, there will be the associated to Links in document Library.

The content Type “Link to a Document” is the correct one to associate, after you select you will need to “Add” to associate with Document Library.

After the Content Type is added, a new option will appear in the Ribbon, if you select the Document Library page and select in Ribbon “Documents>New Document” will appear a new option “Link to a Document”.

After you select this option you can add the document Name that will be displayed in the Document Library View and the url link to the document.

After this option is added the new item will be displayed as a link.
.

Hope this help configure your Document Library to have content types with Links.

Regards 
Rashid Imran Bilgrami 
CEO Best visualization 
http:\\www.bestvisualization.com 

Comments

Popular posts from this blog

[Solved] SharePoint 2013 And Adobe Reader Problem : The URL you have provided could not be reached. Please verify that the URL is correct and that the network location is reachable

Dear All  When trying to open a PDF file from a mapped drive in SharePoint 2010.  You might see the following error message. The URL you have provided could not be reached. Please verify that the URL is correct and that the network location is reachable. 1. Open the registry. 2. Go to HKLM Local Software\SOFTWARE\Policies\Adobe\\\FeatureLockDown. 3. Create a key called cSharePoint. 4. Create a DWORD value called bDisableSharePointFeatures. 5. Set its value to 1. Regards Rashid Imran Bilgrami CEO Best visualization http://www.bestvisualization.com  

SharePoint: A Complete Guide to Getting and Setting Fields using C#

Original article https://social.technet.microsoft.com/wiki/contents/articles/21801.sharepoint-a-complete-guide-to-getting-and-setting-fields-using-c.aspx Introduction This article demonstrates how to set and get the various SPField types for a SharePoint list using C#. The examples demonstrated set and get fields from an item that belongs to a custom list. The custom list contains a number of fields, and all the fields are named based on the type of field they are. For example, there is a Text field, which has been named, textfield. This is depicted in the following picture:   Applies To The examples demonstrated below are tested with and apply to the following versions of SharePoint: SharePoint 2010 SharePoint 2013 Get the List, and the first SPListItem This is the basic code for getting an item. If the list has at least one item, the first item is retrieved, otherwise a new item is created. var web = SPContext.Current.Site.RootWeb; var list = web.Lists...

Updatepanel or Enable Ajax in SharePoint webpart

Dear All It is really giving me a hard to get this techniques if you want to run the update panel in sharepoint 2013 webpart then you need to initialize the script manage by code   protected override void OnInit(EventArgs e)         {             base.OnInit(e);             InitializeControl();             // Register the ScriptManager             ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);             if (scriptManager == null)             {                 scriptManager = new ScriptManager();                 scriptManager.ID = "ScriptManager1";                 scriptManager.EnablePartialRendering = true;       ...