Oct22

How to programatically delete a SharePoint 2007 field belonging to a list or document library?

Categories: SharePoint 2007
Here's the code for deleting a field named "phone" in list "myList" on a site with URL http://mysite/:     try {    using (SPSite sitecollection = new SPSite("http://mysite/"))  {        using (SPWeb web = sitecoll...
 
Oct21

How do you break up a long SharePoint 2007 survey?

Categories: SharePoint 2007
What do you do if you have a long SharePoint 2007 survey and you want to break it up into separate pages such that the user needs to click the "Next" button?   Solution:   You must use branching on selected questions for this. All b...