Posts

Showing posts from July, 2012

Notification API in Silver Light

Click here read

SharePoint blogs

http://www.anmolrehan-sharepointconsultant.com/2011/09/update-user-profile-programmatically.html http://blog.youngmoony.com/

Get UserProfile programmatically using SharePoint Server Object Model?

                using ( SPSite site = new SPSite ( "Your site url here" ))                 {                     SPServiceContext context = SPServiceContext .GetContext(site);                     UserProfileManager upm = new UserProfileManager (context);                     UserProfile profile = upm.GetUserProfile( "your user name here" );                     String WorkEmail = profile[ PropertyConstants .WorkEmail].Value.ToString();                     String FirstName = profile[ PropertyConstants .FirstName].Value.ToString();                      String LastName = profile[ PropertyConstants .LastName].Value.ToString();                 }

SharePoint Details

http://www.directsharepoint.com/2012/01/export-sharepoint-2010-sites-name-to.html

SHAREPOINT 2013 SCREENSHOTS – UPDATED

SHAREPOINT 2013 SCREENSHOTS – UPDATED http://www.lifeinsharepoint.co.uk/2012/07/17/sharepoint-2013-screenshots/

Important SharePoint2010 Links

1. www.amerein.com 2. www.codeplex.com 3. www.sharepointoverview.com 4. sputility.codeplex.com

Export SharePoint 2010 sites name to Excel file using Powershell

Image
Get-SPSite | Get-SPWeb | Select url,title | Export-Csv More Info http://www.directsharepoint.com/2012/01/export-sharepoint-2010-sites-name-to.html

Customizing a GridView as a Web Part for SharePoint 2007

http://www.codeguru.com/csharp/.net/net_asp/controls/article.php/c16071/Customizing-a-GridView-as-a-Web-Part-for-SharePoint-2007.htm

SharePoint Localization, Multi Lingual Messages using Resource files.

http://muhammadkazim.wordpress.com/2011/06/20/sharepoint-localization-multi-lingual-messages-using-resource-files-2/

Step by Step Guide to implement Paging and sorting with SPQuery and SPListItemCollectionPosition

http://www.directsharepoint.com/2011/03/step-by-step-guide-to-implement-paging.html

GridView with Highlighted Search

http://www.aspdotnet-suresh.com/2011/12/search-records-in-gridview-and.html

Check the File size while uploading file using FileUploadControl

Client Side Code : < asp : FileUpload ID ="flimgupload" runat ="server" />                 < asp : RegularExpressionValidator ID ="RegularExpressionValidator6" runat ="server"                     ErrorMessage ="Image Extention Should be .jpg|.gif|.jpeg"                     ControlToValidate ="flimgupload"                                         ValidationExpression ="^.*\.((j|J)(p|P)(e|E)?(g|G)|(g|G)(i|I)(f|F)|(p|P)(n|N)(g|G))$"                     Display ="Dynamic"></ asp : RegularExpressionValidator >                     < asp : CustomValidator ID ="CustomValidator1" runat ="server"                     ErrorMessage ="Image Size Should not exceed 100 K"                     OnServerValidate = "CustomValidator1_ServerValidate" Display ="Dynamic"                     ControlToValidate ="fl