English
I know that Microsoft has fabulous 40, a collection of 40 site templates in this link. I have played with all the templates, without any problem – but today when I tried to install it in my Windows 2008 server I was stuck in the wsp deployment. It seems that I couldn’t deploy the WSP.
Then, I remembered that Windows 2008 has increased security model which prevent accidental execution using privileged account.
LINQ/Lamba and SharePoint « In Development - Dec 4, 2009
[…] ran into a very nice article about using Lambda’s/LINQ on SharePoint objects. You can find it here. Categories: LINQ, Lambda, SharePoint Tags: Lambda, LINQ, SharePoint Comments (0) […] denni - Dec 1, 2009
In this case, you can use Cast() instead of OfType() for better performance. [rfarqleet]( “rfarqleet@xavor.com”) - Feb 3, 2010
Good work! http://www.xavor.com/whatwedo/solutions/sharepointmigrationtool.aspx
English
Before you continue reading this post, I hope you have read the basic task to start using lambda expression in SOM here.
A. Find any Event list in site.
SPWeb spWeb = SPContext.Current.Web
var lists = spWeb.Lists.OfType().Where(
l => l.BaseTemplate == SPListTemplateType.Events);
foreach (SPList list in lists)
{
Console.WriteLine(“{0} {1}”, list.BaseTemplate.ToString(), list.Title);
}
B. Find any list based on custom list definition with Type=20080
SPWeb spWeb = SPContext.
Howto Series : Administration « Ideas for free - Sep 4, 2009
[…] Howto configure personal regional settings. 2. Howto limits page layouts availability in web site. 3. Howto enable debuging in SharePoint Web […] [Colorado Techie]( “coloradotechie@gmail.com”) - Mar 3, 2010
What if the “My Regional Settings” link isn’t there? How do I enable personalized regional settings so my users can configure their own regional settings?
English
When you are working in multi-sites environment you may sometimes confused with the timestamp given by the server. The timestamp (Created Date, Modified Date) is combination of several factors :
a. Server TimeZone , is physical server timezone configuration.
b. Web Application TimeZone , is application level timezone configuration.
c. Site , is subsite, web timezone configuration.
How would you make sure that you are working on correct timezone in SharePoint?
professional name badges - Apr 6, 2010
Enjoyed the this subject post. Not many blogs worth bookmarking but this is going on Delicious now! Zachary Graham - May 4, 2010
RSS Feeds are really very helpful and you could get site and news updates from it.:-, Mason Parker - Jul 3, 2010
RSS feeds are really great because you are always updated with the latest news or blog posts.~*~ Flatware Sets - Oct 4, 2010
English Today, I’ve got an enquiries from one of our users, who could not configure their RSS WebParts. I know from the errors message, its related with proxy and authentication – but in fact he was trying to get feed from internal server. So, what is the situation? We have internal domain with suffix *.mib , however some of our internal server doesn’t have internal name or lies across the region.
English
When you start to create a page, you will be presented a Create page form. In that page, you will have opportunity to select the page layouts for the new page. This howto will describe how to limits page layouts availability in create page. See picture below, instead of having all page layouts listed – we only have 3 page layouts related to the site.
Howto:
1. Open Site Settings, and click on “Page layouts and site templates”
English
Before you continue reading this post, I hope you have read the basic task to start using lambda expression in SOM here.
A. Find existing job definition, named “Change Log”
SPWebApplication spWebApplication = SPContext.Current.Site.WebApplication;
var jobs = spWebApplication.JobDefinitions.Where(x => x.Title == “Change Log”);
foreach(SPJobDefinition job in jobs)
Console.WriteLine(job.Id);
B. Find existing custom job definition MyCustomJobDefinition, named “My Custom Job”
SPWebApplication spWebApplication = SPContext.Current.Site.WebApplication;
var jobs = spWebApplication.
Howto series : Lambda and SharePoint « Ideas for free - Sep 2, 2009
[…] How to use lambda expression in SharePoint Object Model. 2. How to use lambda expression in SharePoint Object Model – working with WebApplication. 3. […] [Sneha]( “sneha.rishi@gmail.com”) - Feb 5, 2010
Hey , Nice article !! . I am trying to write a lambda expression which can fetch all lists that are based on a particular content Type .