• Archive for April, 2009

    Creating sub-sites using WebService

    by  • April 25, 2009 • SharePoint, WebService • 1 Comment

    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 [...]

    Read more →

    SharePoint Database SQL Query Tips4

    by  • April 14, 2009 • Database, SharePoint • 2 Comments

    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 [...]

    Read more →

    Download all files from SharePoint Library

    by  • April 11, 2009 • SharePoint • 1 Comment

    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 [...]

    Read more →

    User Information List – URL

    by  • April 3, 2009 • MOSS, SharePoint • 2 Comments

    In my WSS – User Information List post, I’ll list out the fields available under hidden “User Information List”. Now i’ll like to share the details of URL for that “User Information List”. By using follwoing code, we can get the Users list url, SPList userList = SPContext.Current.Web.SiteUserInfoList; string url = userList.Forms[PAGETYPE.PAGE_DISPLAYFORM].Url; the above code will [...]

    Read more →