Archive
- January 2023 (1)
- December 2011 (1)
- September 2010 (1)
- May 2010 (2)
- April 2010 (1)
- August 2009 (1)
- July 2009 (2)
Author Archives: Mark
Making pretty database exports of HTML content
Creating customer- and manager-friendly database content exports using some basic HTML. Continue reading
Posted in Uncategorized
Leave a comment
Managing and storing custom configuration values in SharePoint
One of the things I frequently run into when developing custom SharePoint solutions is the need to store some form of configuration data. The traditional (ASP.NET) place to put this is in the web.config. However, this has some downsides. It’s difficult to maintain once deployed (and really, hand-editing config files sounds a bit old-fashioned anyway). Another downside is that, for Farm-wide settings, you’d need to duplicate the settings in each web.config. Fortunately, SharePoint comes with the useful SPPersistedObject. Continue reading