It is all about Sharepoint
Browse by Tags
All Tags »
Sharepoint programming (
RSS)
Sorry, but there are no more tags available to filter with.
-
|
Sharepoint 2007 save Keywords and Best Bet to the SSP_DB database rather than the content database. If you use stsadm -o backup/restore to perform backup/restore, you will quickly find it does not work for Keywords and Best Bet. My solution to address...
|
-
|
//Create folder: SPDocumentLibrary docLib = GetYourDocumentLibrary("YourSiteName","Pages"); SPListItem newFolder = docLib.Items.Add("",SPFileSystemObjectType.Folder,"first folder") newFolder.Update(); //Create subfolder...
|
-
|
Sharepoint does not provide "Publish All" feature. If you select Site Action -> Manage Content and Structure you will soon find this page is kind of buggy. You could select multiple files to publish all but it is page based, which means it...
|
-
|
Sharepoint come with many class. Some class name is confusing. SPSite: Represents a collection of sites on a virtual server, including a top-level site and all its subsites. Each SPSite object, or site collection, is represented within an SPSiteCollection...
|
-
|
In my previous post http://www.sharepointblogs.com/mingssn/archive/2007/10/06/word-documents-to-sharepoint.aspx explained the idea of edit Sharepoint aspx content directly instead of using the out of box converter. This is the complete class to import...
|