Reading Time: 4 minutesWhat’s New in SharePoint 2010 Compare with MOSS 2007 REF MSDN Access Services Business Connectivity Services Central Administration (Redesigned) Digital Asset Management Enterprise Search Excel Services Health Monitoring Managed Metadata PerformancePoint Services Records Management Sandboxed Solutions Social Computing Visio Services Upgrade Windows PowerShell (STSADM moved to PowerShell) Removed SSP and …
Reading Time: 1 minuteSharepoint 2010 Beta – [REF MSDN] Microsoft SharePoint Server 2010 Beta is the business collaboration platform for the Enterprise and the Web that enables you to connect and empower people through an integrated set of rich features. Whether deployed on-premise or as a hosted service, SharePoint Server 2010 helps you …
Reading Time: 4 minutesWhy I writing this blog here… We are in MOSS 2007, everyone need to plan to learn and implement Sharepoint 14 once released onwards… Here I added some new features and screen shots from microsoft Vedios. MOSS 2007 – 32 bit , SharePoint 14 – 64 bit Look and feel highly …
Reading Time: 1 minuteMOSS frequent Development Issues and Fix 1. The file or folder name contains characters that are not permitted. Please use a different name. Ans: Check the Master page URL, Once again pick the Master page URL 2. Cannot complete this action. Please try again. Ans: CAML Query Error, Check with …
Reading Time: 2 minutesI moved MOSS dev site to prod environment, its shows error where ever having XSLT dataview. Error Messages In your Web browser: Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Windows SharePoint Services-compatible HTML editor such as Microsoft Office SharePoint Designer. If …
Reading Time: 1 minuteBelow is the Code to Delete List Item used by Microsoft Sample spListCollection = spWeb.Lists[“ActualAmounttrack”].Items; int itemCount = spListCollection.Count; for (int k = 0; k < itemCount; k++) { SPListItem item = spListCollection[k]; if (IdeaId == item[“Title”].ToString()) { spListCollection.Delete(k); } } Its not Working. Why the above code is not working …
Reading Time: 2 minutesHave you tried to drop a SharePoint month calendar on the home page of your SharePoint site? The result… not so cute: the calendar eats up half of the screen. In this post I am going to show how with the help of CSS you can shrink your SharePoint calendar …
Reading Time: 2 minutesVisual Studio 2005 Extensions download from http://www.microsoft.com/downloads/details.aspx?FamilyID=3e1dcccd-1cca-433a-bb4d-97b96bf7ab63&displaylang=en System Requirements Supported Operating Systems: Windows Server 2003; Windows Server 2008 Windows SharePoint Services 3.0 (Basic installation only), or any product built on Windows SharePoint Services 3.0, such as Microsoft Office SharePoint Server 2007 Visual Studio 2005 (Standard Edition, Professional Edition, or Team …
Reading Time: 2 minutesWe are facing a serious problem in related to permission in moss site. The application ends with Access denied page. I added 5 Users 2 Users as Full Control 2 Users as Add, Edit and View (both Lists and Pages) – using Permissions Levels 1 User as viewer When Full …