Skip to main content

SharePoint 2007 Vs 2010

Microsoft Office SharePoint
Server 2007
SharePoint Server 2010
Office client required to view and edit documents uploaded to document libraries (Download and open)Office Web Application enables Word, PowerPoint, Excel and Visio documents, using Silverlight or HTML with JavaScript (Depending on Browser Support)
No Co-Authoring CapabilityCo-Authoring Capabilities available for Word, PowerPoint (with client software) and Excel (Available over the web)
Lot of post backsFewer post backs for default actions – more Ajax usage
No inherent support of Ajax or SilverlightFully supported
Static themes. You just pick a theme and its applied across the site, no previewYou can select a theme , customize it and preview before applying it on the site
No bookmarking, tagging or rating capabilityIts all there
Content Types scoped to site collectionsNew concept of having a Content Type hub which can be shared across web applications
Media files would have to be downloaded before playingProgress download feature available (not streaming)
BDC used to store info in SharePointBCS reads data real-time (with some caching for performance)
5 million item limit in document library10 million
Views are CAML drivenViews XSLT based
To query a list we had to use CAMLQueries via LINQ, JavaScript and Silverlight API’s
No restriction for installationAbility to prevent people from installing SharePoint (Managed at the AD level)
Shared Services scoped to FarmShared Services architecture changed to make it more flexible and ability to share across farm
Profile synch could be done by anyoneAdditional permission check for account to carry out profile synch
Basic web AnalyticsWeb analytics capability enhanced
Search results are staticClicking on a search result affects the search results for the other searches for the same keyword
To limit issues with rogue code that could bring down the server, CAS had to be defined /maintained for different applications. This was not easy to do and Admins used to say – no code allowedSandbox available that restricts the scope of code. Deployment is also easy, the code just needs to be uploaded by the site admin, no need for intervention from the SharePoint farm admin to run scripts on the server
People with contribute access could upload .aspx pages in a document library. It was possible to restrict, however it would restrict everyone from uploading .aspx pagesPeople with contribute access cannot load .aspx pages
Contributors could edit tool pane parametersNot editable by contributors
Explorer view on browserOpens up Windows explorer with web dav access
Simplistic Mobile Page OOTBAble to create richer mobile pages using OOTB features
Usage of outlook for offline accessSharePoint Workspace used for offline access – more capability eg. ability to synch up lists (even external content from BCS)
Not possible to have a common document ID that is associated with a document regardless of which document library it moves intoDocument ID can be defined and associated to the document regardless of where it is located(within the site collection)
To upload a document or page, one needs to go to that appropriate site/subsite and library and uploadContent organizer moves document to appropriate libraries based on metadata rules which can be defined
When a file with a same name is uploaded, it creates a new versionOption to have another version or append a unique ID to the document being uploaded
Fixed layout with defined web part zones where web parts can be placedMore “Fluid” UI; ability to place web parts without having web part zones
Retention policy allows only delete or invoke workflow by defaultMultiple other options – eg send to another library etc
EBS – to store docs out side SharePoint, possible but not easy to configureRBS - managed by SQL
Requires Server OS to install(32 or 64)Can be installed on Win 7 (64 bit) and Win 2008 (64 bit)
No field validationsField validations available
Workflows created in SPD or VS.Net – not possible to move a workflow developed in SPD to VS.NetWorkflows can be defined in Visio, Imported to SPD with rules added and then moved to VS.Net
Table based layoutsDiv Based layouts (better for accessability)

Comments

Popular posts from this blog

How to get SPUser or SPGroup from Person or Group field

You have person or group field in SharePoint list and you want to programmatically get the user or person. The below code to gets SPUser from User or Group field in the list when multiple choice and Groups are not allowed in the field: //get SPUser SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValue userFieldValue = (SPFieldUserValue)userField.GetFieldValue(item["Users"].ToString()); SPUser user = userFieldValue.User; This part of code would help you to get SPUser when multiple choice is allowed and groups are not allowed: //Multiple choices are allowed SPFieldUser userField = (SPFieldUser)item.Fields.GetField("Users"); SPFieldUserValueCollection userFieldValueCollection = (SPFieldUserValueCollection)userField.GetFieldValue(item["Users"].ToString()); foreach (SPFieldUserValue userFieldValue in userFieldValueCollection) {     Console.WriteLine("     " + userFieldValue.User.LoginName); } And when group

SharePoint publishing page scheduling

In SharePoint 2010 publishing enabled team site collection is not showing schedule button in publish ribbon. Solution: Here is how to enable it  though the UI: Locate the SharePoint Server Web site on which you want to enable content approval and item scheduling. Click  Site Actions , click  Site Settings , and then click  Modify Pages Library Settings . Under  General Settings , click  Versioning Settings . Click  Yes  next to  Content Approval , and then click  OK . Click  Manage item scheduling .   Click to enable the  Enable scheduling of items in this list  check box, and then click  OK .

Changing Content Type Hub URL

Change the Hub URL through powershell by using: Set-SPMetadataServiceApplication -Identity " " -HubURI " " For Ex: Set-SPMetadataServiceApplication -Identity "Managed Metadata Service" -HubURI "http://contenttype.Domain.Com" When you try to do this you get this rather scary message: This is SharePoint telling you that this is a major thing so be careful! Essentially all your content types that you have published out will be removed if they can, and you have to republish all of your content types out again which can cause some issue.