in

SharePoint Blogs

The Best Place for SharePoint-related Blogs
All Tags » MOSS » Guides » API (RSS)
Need SharePoint Training? Attend a SharePoint Bootcamp!

Did you have a blog here?

Read this for important information on our recovery!


Browse by Tags

  • MCMS 2002 API vs MOSS API

    As a MCMS 2002 developer it is sometimes hard to get used to the MOSS API for Publishing. I have found that this Mapping MCMS 2002 APIs to SharePoint Server 2007 site to be very useful. I have supplied some example comparisons from the site below: CmsHttpContext Properties SPContext Properties Channel...
    Posted to MdP's MOSS Blog (Weblog) by mdp on 04-13-2007
  • Inserting Data into a HyperLink Column in MOSS

    If you need to insert data into a HyperLink column in a list, you can use the following code: item["HyperLinkColumn"] = "http://www.google.com, Google"; Make sure you have a space after the comma.
    Posted to MdP's MOSS Blog (Weblog) by mdp on 02-26-2007
  • Uses of SPContext

    Mirjam's blog lists some uses of SPContext. Here are a few I grabbed from his post: SPList currentList = SPContext.Current.List; SPWeb currentSite = SPContext.Current.Web; SPSite currentSiteCollection = SPContext.Current.Site; SPWebApplication currentWebApplication = SPContext.Current.Site.WebApplication;...
    Posted to MdP's MOSS Blog (Weblog) by mdp on 02-26-2007
  • Creating a List with a Custom View in MOSS

    The following code can be used to create a custom list in MOSS and apply a custom view to it: // create list web.Lists.Add(listName, "", SPListTemplateType.GenericList); list = web.Lists[listName]; // Add your fields to the list list.Fields.Add("Field1", SPFieldType.Text, false);...
    Posted to MdP's MOSS Blog (Weblog) by mdp on 02-26-2007
  • Writing a MOSS WebPart

    Here is a link that helped me in creating my first MOSS WebPart, since it is a little different than SharePoint 2003. I hope this helps you as much as it helped me: http://www.codeguru.com/csharp/.net/net_asp/webforms/article.php/c12293__1/ Published Wednesday, February 14, 2007 6:57 PM by mykiep Filed...
    Posted to MdP's MOSS Blog (Weblog) by mdp on 02-14-2007
Page 1 of 1 (5 items)

Need SharePoint Training? Attend a SharePoint Bootcamp!

Posts (c) their respective authors. Everything else (c) 2007 SharePoint Experts