Reading Time: 4minutes Why 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: < 1minute MOSS 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: 2minutes I 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: < 1minute Below 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: 2minutes Have 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: 2minutes Visual 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: 2minutes We 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 …
Reading Time: < 1minute Types of Backup and Restore 1. Site Collection Backup and Restore This is only for Site Collection, using Backup and Restore not possible to backup SubSites. Syntax: Open Command Prompt in Sharepoint installed Server cd C:Program FilesCommon FilesMicrosoft Sharedweb server extensions12BIN Backup stsadm.exe -o backup -url http://sitecollection -filename G:backupfilesbackupirec.dat -overwrite …
Reading Time: 2minutes What is Webpart? A web part is an ASP.NET server control which is added to a Web Part Zone on Web Part Pages by users at run time. Web Parts are an integrated set of controls for creating Web sites that enable end users to modify the content, appearance, and …