-
Archives
- June 2023
- July 2022
- November 2021
- October 2021
- July 2021
- February 2021
- February 2020
- January 2020
- November 2019
- October 2019
- June 2019
- September 2018
- August 2018
- July 2018
- June 2018
- April 2018
- March 2018
- January 2018
- December 2017
- September 2017
- August 2017
- July 2017
- June 2017
- April 2017
- February 2017
- January 2017
- December 2016
- August 2016
- July 2016
- April 2016
- March 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- January 2014
- December 2013
- November 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- May 2012
- April 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- February 2010
- January 2010
-
Meta
Monthly Archives: August 2011
Data validation in publishing pages in SharePoint 2010
Like many things in SharePoint – this should be simple but turns out it is not. I had a requirement to ensure that a DateTime field (Next Review Date) on the page is equal to or greater than the current … Continue reading
Posted in Page Layout, SharePoint 2010
Leave a comment
Custom PortalSiteMapDataSource to display full site structure in left navigation in SharePoint
I had a requirement to ensure that all sites within the site collection would display the full site structure (up to the 1st level sub-site) on the left navigation. Given the site structure below for example: For any site underneath … Continue reading
Posted in Branding, SharePoint 2010, Uncategorized
1 Comment
Gotcha when working with master pages and page layouts in SharePoint Designer and Visual Studio
A common thing to do when editing master pages and page layouts in SharePoint is to edit them in SPD and then copy the source code to Visual Studio for check-in to source control. There is a gotcha here. When … Continue reading
Posted in Branding, SharePoint 2010, SharePoint Designer
Leave a comment
Woohoo! I’m now certified!
..in SharePoint 2010 Application Development :). Just passed the TS 70-573 exam. Next in sight is the MCPD in SharePoint 2010 app dev :).
Posted in Stuffs
2 Comments
Making web requests to external sites from SharePoint
In most enterprise settings you will need to go through a proxy server to connect to external sites. In Windows the proxy settings in IE actually affects the apps on that machine. If you write a console app to test … Continue reading
Posted in SharePoint
2 Comments
IgnoreIfAlreadyExists attribute when provisioning files in SharePoint
The IgnoreIfAlreadyExists attribute of a File element when provisioning a file can be mysterious. Most of the posts on the net are saying that: When this attribute is set to FALSE, an error will be thrown if the file already … Continue reading
Posted in SharePoint 2010
1 Comment
Should I call Dispose on SPWeb.ParentWeb?
I was coding away and wondered if I should call Dispose the parentWeb object below? I found some official guidance on this and thought I’d blog it here, partly to help jolt my memory later on. The short answer is: … Continue reading
Posted in SharePoint 2010
Leave a comment