Tuesday, October 12, 2010

SharePoint 2010: Part 5: Preparing for 70-573 TS Microsoft SharePoint 2010, Application Development

http://techtrainingnotes.blogspot.com/2010/05/sharepoint-2010-part-5-preparing-for-70.html


SharePoint 2010: Part 5: Preparing for 70-573 TS Microsoft SharePoint 2010, Application Development




(Start here: http://techtrainingnotes.blogspot.com/2010/05/sharepoint-2010-preparing-for-70-573-ts.html)

Friday, September 10, 2010

JQuery Plugins for Sharepoint

Image Carousel

Sliding Images

http://jquerywebparts.codeplex.com/


http://philwicklund.com/archive/2009/04/20/an-introduction-to-jquery-for-sharepoint-developers.aspx

http://weblogs.asp.net/jan/archive/2008/11/20/sharepoint-2007-and-jquery-1.aspx
http://www.garryyoung.net/Blog/post/Add-JQuery-to-your-SharePoint-Web-Parts.aspx

Thursday, September 9, 2010

Webparts and jQuery Good links

http://www.telerik.com/community/forums/aspnet-ajax/ajax/radtabstrip-radmultipage-state-lost-when-inside-nested-control-in-sharepoint-web-part.aspx



http://www.sharepointbrainfreeze.com/archive/2010/02/01/combining-jquery-ui-dialogs-and-sharepoint-webparts.aspx


http://docs.jquery.com/UI/API/1.7.2/Tabs

http://www.authenticsociety.com/blog/jQueryTabsPlugin


http://www.queness.com/post/655/jquery-moving-tab-and-sliding-content-tutorial

http://code.enure.net/Hide-All-Except-One

http://docs.jquery.com/UI/API/1.7.2/Tabs

http://www.sharepointbrainfreeze.com/archive/2010/02/01/combining-jquery-ui-dialogs-and-sharepoint-webparts.aspx


http://sharepointprog.wordpress.com/tag/radtabstrip/

http://www.eggheadcafe.com/software/aspnet/31437702/overriding-the-rendercontents-method-in-a-webpart.aspx

Thursday, September 2, 2010

sharepoint-claims-based-authentication-series

http://www.sharepointsecurity.com/sharepoint/sharepoint-security/ten-part-sharepoint-claims-based-authentication-series/

So here are some links that I have found incredibly useful:

Writing a custom claims provider for SharePoint 2010: Great 4 part series all about developing your own provider. Found this incredibly useful in understanding some of the lower level development components needed to implement Claims
Ten Part SharePoint Claims Based Authentication Series: Whoever took the time to do this should be knighted. Terrific set of articles that covers not only what claims are from a .NET perspective but also how they apply to SharePoint 2010.
Introduction to Claims Based Authentication in SharePoint 2010 in plain English: Great one page summary of claims and SharePoint.
Configuring Claims Based Authentication for SharePoint 2010: Tech Net article for how configure claims authentication
SharePoint SPIdentity Team Blog: Office blog of the SPIdentity team that will keep adding articles about all identity related stuff
Plan for Claims Based Authentication: Another Tech Net article detailing the planning necessary for claims authentication
Claims Based Identity and Access Control Guide: From the Patterns and Practices team from Microsoft comes
Federated Authentication and Authorization with Sharepoint 2010 and ADFS: Great video overview

Sharepoint 2010 Install Guide

http://andreasglaser.net/post/2009/11/17/Installing-SharePoint-Server-2010-on-Windows-Server-2008-R2-and-SQL-Server-2008-R2-Part-4-Active-Directory-installation-and-configuration.aspx

Tuesday, August 24, 2010

The Managed Metadata Service or Connection is currently not available…

Issue:
The Managed Metadata Service or Connection is currently not available…
While configuring the Managed Metadata Service I got the below error...
The Managed Metadata Service or Connection is currently not available. The Application Pool or Managed Metadata Web Service may not have been started, Contact your Administrator.

Resolution:
After installing this the problem is resolved.

You can get the hot fix ‘KB976462 – SharePoint Shared Services Roll-ip’ at

http://code.msdn.microsoft.com/KB976462/Release/ProjectReleases.aspx?ReleaseId=3571

Friday, August 13, 2010

SpUtility Mail Truncate issue

Issue:
SP Utility - Mail truncated after 2048 characters.
Solution:
Use \r\n
Example:
_mailContents.Append("");
_mailContents.Append("If you have any questions, please click here to contact us.");
_mailContents.Append("\r\n");
_mailContents.Append("");

Enjoi!!