|
By Udayakumar Ethirajulu , on November 26th, 2009 I have released the next version of TreeView Document Library WebPart for SharePoint 2007.
Added features in this release:
Automatically populates the list of document libraries in dropdownlist in toolpart Collapsed TreeView can be managed from toolpart property Automatically shows the appropriate icons for the files in document library
WebPart included […]
By Udayakumar Ethirajulu , on November 26th, 2009 The following code snippet is used to retrieve the list of document libraries.
SPWeb _web = SPContext.Current.Web;
SPListCollection ListColl = _web.Lists;
foreach (SPList _lst in ListColl)
{
if (_lst.BaseTemplate == SPListTemplateType.DocumentLibrary)
November 26th, 2009 | Tags: MOSS 2007, SharePoint 2007, SharePoint Object Model | Category: MOSS 2007, SharePoint Object Model |
By Udayakumar Ethirajulu , on November 20th, 2009 While running SharePoint Configuration wizards, if you get an error “Microsoft.IdentityModel assembly missing”
Make sure you have installed “Geneva Framework”, its part of your pre requisites for SP 2010
By Udayakumar Ethirajulu , on November 16th, 2009 Microsoft has released the beta bits of SharePoint 2010 for MSDN & Tech Net subscribers.
I hope it will be available for public in few days J
By Udayakumar Ethirajulu , on November 15th, 2009
SharePoint 2010 Technology Stack looks like below.
The key advantage for the developers would be the development machine can be set it up in Windows Vista or Windows 7 (x64-bit) machine J
By Udayakumar Ethirajulu , on November 12th, 2009 Microsoft SharePoint Development team has released the following screen casts for developers.
Click Here for ScreenCast
By Udayakumar Ethirajulu , on November 10th, 2009 If you are looking for free application template, which suites your business area, read this resource on TechNet. It has list of 40 Application templates grouped by the following business category.
Business Management/Finance Human Resources Operations/IT Project Tracking/Product Management Sales/Marketing Specialized/Verticals […]
By Udayakumar Ethirajulu , on November 8th, 2009
Create Resource file using Visual Studio IDE
Copy the resource file into 12 hive resource folder
GetLocalized method from SPUtility to read the values from resource file
Syntax:
SPUtility.GetLocalizedString(“$Resources:<<ResourceFileName,ResourceKeyName>>”, “<<ResourceFileName>>”, lang);
Example:
SPUtility.GetLocalizedString(“$Resources:MyResources,FirstName”, “MyResources”, lang);
Sample Source:
November 8th, 2009 | Tags: MOSS 2007, SharePoint 2007, SharePoint Object Model | Category: MOSS 2007, SharePoint Object Model |
By Udayakumar Ethirajulu , on November 5th, 2009
The Technet resource on SharePoint 2010 Topologies model explains the following:
Read about how the new services model applies to physical topologies Review detailed guidance on which services to start on farm servers See sample topologies for small, medium, and large environments
Download here for SharePoint 2010 Topologies Model from […]
By Udayakumar Ethirajulu , on November 1st, 2009
If you encounter the error “The trial period for this product has expired” after upgrading the license from trial to standard/enterprise edition in sharepoint.
Change your app pool account from “Network Service” to Domain account.
|
|