Microsoft SharePoint 2010 makes it easier for people to work together. Using SharePoint 2010, your people can set up Web sites to share information with others, manage documents from start to finish, and publish reports to help everyone make better decisions.

learn more… | top users | synonyms (1)

19
votes
13answers
1k views

How is SharePoint perceived in your company?

UPDATE An interesting time to revisit this question. Is perception still the same now that SharePoint 2010 is beginning to take hold? Certainly implementing 2010 is not without its own challenges, ...
16
votes
7answers
646 views

What is the point of SharePoint?

My company have started to use SharePoint. Now, as a software developer I simply can not understand the advantages of such a system. To me it just looks like a browser based application through ...
13
votes
16answers
20k views

FileNotFoundException with the SPSite constructor. What's the problem?

I try to instantiate a instance of SPSite on the farm server in a custom software (MyApp.exe) and I give in parameter the whole website (http://mysite:80/). I also made sure that the account running ...
12
votes
4answers
407 views

What does this Javascript code do?

I've been looking at Sharepoint script files and I've come across this bit that I don't get: function ULSTYE() { var o = new Object; o.ULSTeamName = "Microsoft SharePoint Foundation"; ...
11
votes
15answers
2k views

What developer features excite you the most for WSS 4.0 / SharePoint 2010?

There's been a lot of developer frustration working with SharePoint but we all hope Microsoft has been listening. With that in mind... What updated and new features for developers excite you about ...
9
votes
2answers
731 views

How to properly call an external WCF Service from SharePoint 2010?

I would like to call an external WCF Service from within SharePoint. Using normal WCF calls immediately causes a SocketException (An existing connection was forcibly closed by the remote host), which ...
9
votes
3answers
13k views

SharePoint 2010 is forcing me to save PDF when opening from doc library

I have a document library with a PDF file. Whenever I click on the PDF file, I am prompted to save the file. I do not get the option of opening the file, I am forced to save it. What I want is for ...
9
votes
7answers
20k views

Solving SharePoint Server 2010 - 503. The service is unavailable, After installation

Installed: SharePoint Server 2010 for Internet Enterprise Beta (x64) On: Windows Server 2008 Standard (x64) on 64 bit hardware Attempts to access the Central Administration console led to IIS ...
8
votes
5answers
8k views

Enabling Session State in SharePoint 2010?

I have a web service built for SharePoint 2007 that I am trying to port to SharePoint 2010. This web service is dependent on session state to function properly, but so far, I have been enable to get ...
7
votes
1answer
140 views

Problems reading cookies in Sharepoint with anonymous access

I save a cookie in a sharepoint webpart in this way: System.Web.HttpCookie cookie = new System.Web.HttpCookie(_cookieApplicationId); cookie[_cookieName] = value; cookie.Expires = ...
7
votes
1answer
608 views

Sharepoint Out of the box Approval Workflow Approve/Reject comments issue when programmatically altering it

I have a resusable out of the box sharepoint approval workflow 2010, and I am programmatically approve/reject workflow using the below code snipelet inside infopath formcode (2010). Hashtable ht = ...
7
votes
10answers
1k views

Getting started with SharePoint 2010 for SharePoint 2007 Developers

Do you know some quick links that will help a SharePoint 2007 Developers to get started with SharePoint 2010. Let me start with the links I know. General Information on SharePoint 2010 Must watch ...
7
votes
7answers
905 views

What SharePoint development concepts are the hardest for ASP.Net developers to understand?

I'm trying to put together SharePoint 2007 (and, eventually, 2010) training materials for experienced ASP.Net developers, and having done SharePoint for years, I don't really remember where the worst ...
6
votes
2answers
39 views

Why should I use fieldLinks when adding fields to a contenttype?

When I search for documentation about creating contenttypes using code (C#) I always find examples using a SPFieldLink to link to an existing field of the site and adding this via ...
6
votes
3answers
121 views

How to set the name of a new SPListItem programmatically?

I have a custom list which can contain a CustomContentType. This is how i create a new item: //Create root folder SPListItem rootItem = navigation.Items.Add(); SPContentType folderType = ...
6
votes
2answers
118 views

Detecting if I'm running in SharePoint

Is there a way for my ASP.net Application to know if it's running within SharePoint (2010), but without referencing SharePoint Assemblies? (So I can't just check if SPContext.Current is null). I ...
6
votes
2answers
2k views

Override Chrome Type Webpart

I made a Webpart in Sharepoint 2010, and I need that the property "Chrome Type" allways set a "None" value. I was looking for ways to force the Combobox to "None", or overriding the "Chrome Type" in ...
6
votes
1answer
2k views

Sharepoint PeopleEditor: How to find out what kind of user/group is returned?

I have a PeopleEditor: <SharePoint:PeopleEditor ID="peopleEdit" ... SelectionSet="User,DL,SecGroup,SPGroup" /> It works flawlessly on the page, i.e. I can select AD users, Sharepoint groups ...
6
votes
4answers
523 views

When does one use Web Parts vs. Full blown ASP.NET application in SharePoint?

I'm still struggling with this question as I'm trying to get up to speed with SharePoint, coming from ASP.NET Web Forms. We're looking to use SharePoint exclusively for several reasons; one of the ...
6
votes
1answer
3k views

Deploying custom dll's in SharePoint 2010

I'm new to SharePoint and trying to get my head around this. I have a simple Web Part project. I also have a custom Data layer project that uses the Microsoft Enterprise Library for data access. In ...
6
votes
1answer
708 views

SharePoint 2010: RemoveFieldRef and Inherits=“TRUE”

I have created a custom content type that inherits from the OOTB SharePoint Picture content type. The only customisations I have made is to add a simple URL field, and remove two of the fields on the ...
6
votes
2answers
410 views

SharePoint 2010 VS development: Intellisense for ASPX files

I'm using Visual Studio 2010 to develop a SharePoint Server 2010 solution. Part of this includes custom Page Layouts, but when editing them, intellisense is completely broken, since Visual Studio ...
6
votes
9answers
1k views

Where to start learning SharePoint 2010?

I recently started at a new job where I'll be working with Sharepoint 2010 to set up (or actually upgrade) an intranet. Unfortunately, I have no experience with SP2010, and the last time I touched ...
5
votes
4answers
213 views

ASP/C# code behind can not reach control from markup

Issue: I have a markup like this (only the important lines): <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="RTDeluxe.ascx.cs" Inherits="MainSolution.CONTROLTEMPLATES.Kunde.RTDeluxe" ...
5
votes
2answers
464 views

SPSite site = new SPSite(SPContext.Current.Web.Url) vs SPContext.Current.Web.Site

Why do SharePoint examples use using (SPSite site = new SPSite(SPContext.Current.Web.Url) { ... } and not just simply? SPSite site = SPContext.Current.Web.Site; ... Update I think I have ...
5
votes
2answers
292 views

Get all users from active directory to sharepoint

I have to populate my autocomplete PeopleEditor-like control based on brililant ASPTokenInput with all people from my AD domain. Reflecting PeopleEditor shows a real mess in their Active Directory ...
5
votes
1answer
108 views

Sharepoint project crashes when deploying

I got a lot of projects for Sharepoint which all work fine instead of one. This project can only deployed by one developer of our team, all other devs keep getting an exception when trying to deploy ...
5
votes
4answers
299 views

Building New Product: ASP.NET vs SharePoint 2010

Hi I met an investor who wants a new product to sells to other companies. We agreed to make it SaaS, but we're arguing over three options: SaaS product using pure ASP.NET Saas product using huge ...
5
votes
7answers
2k views

Company wants me to learn Sharepoint 2010 development, should I?

I am a Asp.Net developer, currently working on Webforms in 3.5. I do C# now, used to do VB.Net. I am also a middle tier developer (business layer and data layer) working on refactoring the current ...
5
votes
2answers
5k views

Add user to SharePoint 2010 group using powershell

We need to add several users to several SharePoint Groups. Does anyone have an example of how to add a user to a sharepoint group using power shell.
5
votes
1answer
5k views

Programmatically set a TaxonomyField on a list item

The situation: I have a bunch of Terms in the Term Store and a list that uses them. A lot of the terms have not been used yet, and are not available yet in the TaxonomyHiddenList. If they are not ...
5
votes
1answer
582 views

Does SharePoint 2010 still have the complicated SPWeb.Dispose methods?

One of my gripes with SharePoint 2007 are the complicated SPWeb.Dispose rules that can either cause a big resource leak if you don't dispose what you have to, or all sorts of other weird issues if you ...
4
votes
1answer
45 views

How could I find the fields of a SharePoint list from database in SharePoint 2010?

In SharePoint 2003 and 2007, there was a table called AllLists which had a column called tp_Fields which contained an xml containing all fields for a specific list. an example of the xml stored in ...
4
votes
2answers
175 views

Conditionally specifying switch parameters in PowerShell

I'm writing a PowerShell script that uses the SharePoint 2010 New-SPWeb cmdlet to create sites defined by an Xml file: <?xml version="1.0" encoding="utf-8" ?> <siteStructure> ...
4
votes
1answer
112 views

Problems with single anonymous access aspx in Sharepoint 2010

I got a SharePoint Project which already works with anonymous Access. Now I added an aspx-page which is used for streaming images. That aspx-page is added into a virtual directory Layouts\ Whenever I ...
4
votes
1answer
463 views

Sharepoint 2010 Client Object Model - Large Library - Find item without iteration

I have a large document library (at the moment ~6000 documents) and I need to find a document based on a custom field value (custom column on the library). Is there a way of getting this document ...
4
votes
1answer
387 views

SharePoint 2010 tertiary navigation dissappearing on AppPool recycle &/or flushing of the object cache

I've got an issue where the tertiary level navigation randomly disappears on a publishing SharePoint 2010 site. I can reproduce the disappearance by recycling the app pool or flushing the object ...
4
votes
1answer
2k views

SharePoint 2010: Modal Dialog doesn't work properly

For some reason, my SharePoint's modal dialog doesn't work properly. The error I get is this: In Firefox: SP.UI.$create_DialogOptions is not a function In IE: Object doesn't support this property ...
4
votes
1answer
601 views

Securing an external list by filtering for current user

I have set up an external content type with a column that contains Active Directory accounts to map each record to a user. Now I want users to only see those records in the list where the AD-account ...
4
votes
1answer
117 views

Sharepoint 2010 Test Live setup

I currently have a Sharpoint 2010 instance running on a server. I need to create a test environment to best mirror how live is set up. We will then be deploying changes to test then to live (as ...
4
votes
0answers
327 views

Word Document in Sharepoint - VSTO

Here is what I have done. Created a document template [ word 2010 ] in VS 2010. Added few content controls to the document. List item On save event, calling DB [ using EF] Publish to a network ...
4
votes
2answers
2k views

How does one get all child terms of a SharePoint term in C#?

I am writing a webpart for SharePoint 2010 that recuperates the latest page of a certain (custom) type, according to publishing date. It only takes into account pages tagged with a specified term. I ...
4
votes
1answer
1k views

How to get SPWebApplication from SPWeb?

So I'm inside a web scroped feature (properties.Feature.Parent = SPWeb). How do I get the SPWebApplication from this SPWeb? I tried: SPWebApplication webApp = ...
4
votes
1answer
2k views

Programatically get 14 hive path in sharepoint 2010

i need to get 14 hive path using code in C#.net. can any one tell me how can i do this?
4
votes
2answers
2k views

SharePoint error: Web application at xxxx could not be found

When I try to execute this code: SPSite siteCollection = new SPSite(@"http://sp-devxxx:10000/"); It throws the following error: The Web application at http://sp-devxxx:10000 could not be ...
4
votes
4answers
727 views

ASP.NET MVP vs ASP.NET MVC

My company is trying to make an informed decision about how to pursue future development. We seem to have narrowed down our future internal and external Applications to being web applications. But ...
4
votes
5answers
520 views

Most useful free SharePoint 2010 Utilities/libraries?

Kindly provide all free Utilities/libraries details here so that we can make a one stop shop for users to find free utilities Mine contribution mixed authentication SharePoint AJAX Toolkit for ...
4
votes
1answer
359 views

Difference between SPList.ContentTypesEnabled and SPList.AllowContentTypes?

What is the difference between SPList.ContentTypesEnabled and SPList.AllowContentTypes?
4
votes
2answers
1k views

Getting members of an AD domain group using Sharepoint API

In my Sharepoint code I display a list of all defined users via: foreach (SPUser user in SPContext.Current.Web.AllUsers) { ... } The great part is, I can add a domain security group to a ...
4
votes
1answer
740 views

Accessing Property Bag for List Item using SharePoint Client Object Model or Web Services

Just to ask if it is possible to access and update properties in the list item's property bag via the SharePoint 2010 client object model? I can see that it possible to get the web's property bag ...

1 2 3 4 5 78