From application page - upload multiple documents to library programmatically - then get their IDs?
-
3 aprilie 2012 21:07
Hi there,
SharePoint 2010 - Visual Studio 2010 - Application page:
- I need to present users with an application page where they can browse and select multiple files and then upload them at once.
- After the upload, the users should see the integer IDs of the files they just uploaded.Your help is appreciated. Thanks folks
Toate mesajele
-
3 aprilie 2012 22:48
Hi,
You can call Add method which takes in the following parameters. I dont have acces to environment, so the following snippet will have to be corrected if needed.
SPFile myFile = myFilesCollection.Add(string urlOfFile, Stream file, Hashtable properties, bool overwrite);
To get the IDs, do myFile.Item.ID;
- Marcat ca răspuns de Qiao WeiMicrosoft Contingent Staff, Moderator 13 aprilie 2012 11:54
- Anulare marcare ca răspuns de ran009 13 aprilie 2012 15:17
-
14 aprilie 2012 23:52
Thanks Sangeetha,
Do you know how to show the control to upload multiple files please?
Thanks :-)