A FxCop for CSS style sheets: http://madskristensen.net/post/Introducing-CSSCop-FxCop-for-stylesheets.aspx
In order to grant authenticated FBA users access to a custom application page (/_layouts page), please follow these steps:
- The Page should inherit from LayoutsPageBase (Making it inherit from UnsecuredLayoutsPageBase will grant anonymous access to this page).
- Override the Properties RightsRequired and RequireDefaultLayoutsRights
protected override SPBasePermissions RightsRequired
{
get
{
SPBasePermissions permissionRequired = SPBasePermissions.ViewPages;
return permissionRequired;
}
}
protected override bool RequireDefaultLayoutsRights
{
get
{
return false;
}
}
This will grant authenticated FBA users access to this _Layouts page.
Posted in Code, SharePoint | Tagged FBA, SharePoint 2010 | Leave a Comment »
Posted in Good Links, Tools, Utilities | Tagged Security, Tools | Leave a Comment »
The new (just released) release of DotNetNuke (enterprise edition) can now integrate with SharePoint to expose a document library on the internet. More at: http://www.dotnetnuke.com/Resources/Blogs/EntryId/3133/SharePoint-integration-in-DotNetNuke-6.aspx
Posted in Good Links, SharePoint | Tagged DotNetNuke, SharePoint | Leave a Comment »
Posted in News | Tagged SQL | Leave a Comment »
Posted in Good Links, SharePoint | Tagged SharePoint 2010 | Leave a Comment »
The guidance for SP 2010 with SP1 has the limit for the content database at 4TB. That size includes the RBS BLOB files.
Posted in Uncategorized | Leave a Comment »
Tools and Techniques for .NET Code Profiling: http://msdn.microsoft.com/en-us/magazine/hh288073.aspx
Posted in Good Links, Software development, Utilities | Leave a Comment »
Posted in Good Links, News | Tagged Biztalk 2010 | Leave a Comment »
Posted in Good Links, SharePoint | Leave a Comment »