sharepoint2010

Using a Resource as an Attribute to a HTML Element in ASP.net

I would like to have this piece of code in my .aspx file: <input class="ms-ButtonHeightWidth" type="button" name="BtnOK" id="Button2" value="Close" onclick="javascript:HandleOKButtonClick()" accesskey="<%$Resources:wss,okbutton_accesskey%>" /> Unfortunately, ASP.net doesn't seem to like that: An error occurred during the processing ...

Fitment of SharePoint (Foundation) for a data intensive software.

Hello. I am new to SharePoint technologies and trying to figure out its suitability for a product to be developed. I am targeting using only SharePoint Foundation (not the server). Here are some of the key aspect of the target product: The product is data intensive. There are scores of business and system entities involved. Business e...

SharePoint 2010 and FBA

Hi, I an trying to setup Forms Based Authentication using ASPNetSQLMembershipProvider. In 2010 Beta 2, I was able to do this in classic mode, and it worked. With the RTM, it is no longer supported under classic mode, and I must switch to Claims based Authentication. So I created a new web application, and configured everything in sharepo...

Sharepoint Server 2010 Layout change

hi, I have 2 questions about sharepoint 2010. When will Sharepoint Server 2010 realeased ? Is Sharepoint Server 2010 easy customized in terms of layout aspect ? Description:We have a goverment client. They care UI more than other aspects such as fucntionality. So this B/S project will have a very customizble UI, and the client is high...

Lookups with multiple values are not showing porperly in sharepoint edit and display custom form

HELP! For some reason when I create a custom edit or display form, all the lookup fields are showing in a weird way or not showing any value at all, can someone explain to me how I am suppose to fix that, I know it has something to do where it say select="@value" in the display form. Please help me out. Thank you. ...

Using Entity Framework as a Web Part's Data Source in Sharepoint 2010

I have a very simple web part. I have a single grid view, which I am populating using linq to entities (or at least that's what I want to do). The Entity Data Model .edmx file is located in the same project as the web part, and everything looks to be in working order. When I debug the project, it blows up on the entity model construct...

Looking for search syntax documentation for SharePoint UserProfileManager.Search Method

Greetings - I have a SharePoint 2010 server running with the User Profile service setup to synchronize to Active Directory. I'd like to use the UserProfileManager.Search() method to return user profiles based on specific criteria. MSDN documentation for this method is here. It states that the method will return user profiles that match...

SharePoint ECMAScript: Web.DoesUserHavePermissions()

I am trying to determine the permission level of the current user using the ECMAScript client OM. The following code always returns 0. Any thoughts? function Initialize() { clientContext = new SP.ClientContext.get_current(); web = clientContext.get_web(); clientContext.load(web); clientContext.executeQueryAsync(Functio...

SharePoint 2010 wildcard search

So you can do a partial search in SP2010 using "share*", but i'd like to be able to do a search using "*". Any thoughts on the best way to do this? ...

Bet on Sharepoint 2010 Workflows?

I am looking into Sharepoint 2010 currently and it seems to me the workflow engine being used is based on WWF 3.5. I wonder if it's a good idea to do this as WWF has been gone through dramatic changes with version 4. I wonder if the investments would be save. ...

Search an item based on a custom property

I started this task assuming it to be pretty trivial one. However, going to the depths i find that its either not that simple or may be i am using a wrong approach here. In my case i have a number of documents which are not in the same directory however, they have the same names/title. What i want is to carry out a site based search and ...

User controls in masterpage and anonymous user

I am developing a master page which includes the user control that generates a menu from the list with a specific logic. Before including the control into master page I successfully configured anonymous access to the site. After including the control and deploying - site prompts for user name and password. I allowed the anonymous acce...

A suitable MVC / MOSS 2010 Architecture

We currently are running moss 2007 for an enterprise internet facing site. The site's main functionality is surfaced using FAST search with MOSS 2007 used for the cms aspects. We find that the performance and development experience inside of MOSS to have been quite painful. We are planning to migrate to MOSS 2010 but the plan is to use ...

Sharepoint Foundation 2010 development environment installation problems

I'm having problems installing development machine for Sharepoint (Foundation) 2010. This is what I did so far on the same machine: Installed a clean Windows 7 x64 with 4GB of RAM without being part of any domain. Just a simple standalone machine. Enabled IIS related features as described here except IIS6 related ones (two of them) Ins...

Enable DOM Access for Silverlight Web Part in Sharepoint 2010

I am hosting a silverlight 3.0 control on my Sharepoint 2010 page. I am using the built-in SilverlightWebPart web part, where I have provided the path for .xap file. Its displaying properly, but when I try to access the System.Windows.Browser, its throwing an error. My code is: public static string GetQueryString(string key) {...

How do I make the "change order" button appear in SharePoint 2010?

How do I make the "change order" button appear in SharePoint 2010? I have followed a guide that allowed me to add OrderedList="TRUE" to my list template. This makes it possible to select "Allow users to order items in this view" for my view. But the change order button is still missing. Any idears on what I am missing? I am using Share...

Sharepoint 2010 RTM alerts templates

Hello! I'm trying to modify and set alert templates on a SP (working on a copy of alerttemplates.xml), but I'd like to deploy them just on some specific sites, not the whole farm. Is this possible? I'm using SharePoint 2010 RTM. Thanks ...

Cannot create list in SharePoint 2010 using Client Object Model

I am trying to utilize SharePoint 2010 Client Object Model to create a List based on a custom template. Here's my code: public void MakeList(string title, string listTemplateGUID, int localeIdentifier) { string message; string listUrl; ListTemplate template; ListCreationInformation listInfo; ListTemplateCollection templat...

Develop for Sharepoint 2010

Is it possible to develop (webparts etc.), using Visual studio 2010, for Sharepoint 2010 without having it installed on the developer machine(virtual or direct in Windows7)? E.g developing against a shared server or without beeing connected to a server at all. ...

Copying web part pages within SharePoint

Hi, I'm trying to copy some web part pages (aspx) from one library into another. Reason is that I've got sites which are created dynamiccally. I also want to add some content (based on several rules) to those sites, which include aspx web part pages. The deployment works fine, but the web part pages are empty in the target site. As I...