The sharepointdocumentlibrary tag has no wiki summary.
-2
votes
0answers
30 views
How to add a new item in a list in sharepoint document library?
I need to add a new item to a list in document library.
I know that every item in the list in document library is stored as .xsn file or .xml file.
Is this the way does it get stored? Am I supposed ...
1
vote
0answers
39 views
Bulk file upload creates multiple versions of all files except last file
I have an interesting (well to me anyways) problem here. I am doing a code based mass upload of documents into a SharePoint library with a twist. The twist is that the file's last modified date ...
1
vote
0answers
72 views
Do not comment shaerpoint's Lists.asmx service
I am trying to fetch the list of filenames which are there in my document library of office 365 sharepoint site.
I am using below code to access the List.asmx Service using Visual Studio 2010.
...
0
votes
1answer
424 views
How do I select which view when adding document library web part to a page in my site definition?
In my custom SharePoint 2010 site definition:
I have a custom list instance in my site definition with multiple views...
I have a page that I want to display one of the views on...
In the page's ...
0
votes
0answers
87 views
Filter Data Form Web Part Display form to show results for displayed page in a wiki library
I am building a DVWP / Display form for an Enterprise Wiki to display comments on the pages they are entered on following ...
1
vote
1answer
143 views
How to Download Document from Sharepoint Librarly and display in ASP.NET programatically?
I have created a document library with name "ARTICLES" in SHAREPOINT which stores documents. Now, I want to display the documents in Repeater and clicking on row it must display the document. And also ...
0
votes
0answers
255 views
Rename File Using SharePoint Client Object Model?
This may seem like a stupid question but I can't seem to find any answers on Google.
I have written a method to query SharePoint and rename a document based on the document name parameter I specify. ...
0
votes
0answers
87 views
SharePoint 2010 - Use FilterMultiValue in combination with documentSet (to filter document library)
Has anybody used the FilterMultiValue in combination with DocumentSet?
I have a list with 2 content types (1 = document and 2 = document set).
I have added 4 documents: 2 documents and 2 document ...
-1
votes
1answer
151 views
Upload more than 2GB file in Sharepoint [closed]
I have requirement to upload more than 2GB file in Sharepoint Document Library.
Sharepoint boundary value for it is 2GB so is there any approach to override this.
Please help.
1
vote
0answers
280 views
Sharepoint 2013 file adding and created by property
As a requirement of our application, we add files with other file's properties within document libraries using the following method:
private static SPFile AddFile(SPListItem item, Stream stream, ...
0
votes
2answers
84 views
Programatically unpublish a document in Doc Library in Visual Studio in SharePoint 2010
I'm copying a document from one doc library to another library as a New Version. It's working fine and Publishing the copied document in the destination library.
Is there a way to either copy it ...
0
votes
1answer
1k views
Programmatically get children of document library using recursion
I need to recurse through the contents of a document library and display them on a webpage using MVC. However I get the following error when trying to run my code: " The collection has not been ...
0
votes
1answer
601 views
programmatically get children of folder sharepoint
I have been asked to retrieve the contents of a document library and display them on a webpage with links to download using MVC. I can retrieve all the documents from the library with no issue. ...
0
votes
1answer
369 views
Specified argument is out of the range of valid values. Parameter name: Server Relative URL
I am trying to download a document from a SharePoint document library using MVC however whenever I try to run my code I get the error mentioned above. I am new to SharePoint so please be nice. here is ...
0
votes
1answer
544 views
Download a document from SharePoint 2010 document library using MVC
Hi I want to display a list of documents in an MVC view and be able to download them on click. I have attempted a solution myself as shown below. I have been struggling with this for a long time so ...