I noticed in MSDN forums, many of them are struggling with creation of sub-sites using webservice in sharepoint.
I take a look on that, Because they are all try to use CreatSite method in Admin webservice. But that will help only on creating SiteCollections.
Then how we can create a susite? It’s very easy if you are look in [...]
Where are the Documents or files we uploaded or attached stored in sharepoint? Many of them know, those files are stored under SharePoint Content Database. But on which database table, on which format?
For that, i did a quick research on that, and here i give those results,
The AllDocStreams table in SharePoint Content Database stores the [...]
Now, we are going to see how we can download all documents(incluing sub folders) from SharePoint Library.
First of all,we have get all documents from SharePoint Library. The following code help us to get all the documents including Subfolders.
//Get the Document Library and its view
SPList list = web.Lists["Test Document"];
SPView view = list.Views["All Documents"];
//Query all documents in [...]
