|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
7 Articles match "SharePoint"
|
Related DevelopMentor Courses
|
MORE
|
|
SharePoint for Developers (WSSv3/MOSS2007)
Come and learn to build solutions for Windows SharePoint Technologies! fw413 MO Essential Sharepoint for Developers (FW413) Day 1 Architecture We look under the hood to see how Windows SharePoint Services and Microsoft SharePoint Office Server 2007 work. Deployment with the Feature and Solution Framework Windows SharePoint Services v2 provided little in terms of deploying functionality built by developers into the SharePoint environment. Unfortunately this tied WSS to Windows Authentication for site access, forcing SharePoint to be seen as purely an ?
DevelopMentor Courses
- Friday, June 12, 2009
Essential SharePoint 2010 for Developers
This in-depth developer oriented course explores the new SharePoint 2010 features such as new customization capabilities, ASP.NET AJAX integration, Silverlight Integration, Content Management, Document Management, Workflows,NET 4.0, You'll get answers to these questions: What are the different SharePoint 2010 Components? How do I architect and plan for robust SharePoint 2010 deployment? How do I customize SharePoint 2010 fast to suite business demands? What can I do with the new Client Object Model using Silverlight or JavaScript in SharePoint 2010? Routing?
DevelopMentor Courses
- Tuesday, February 2, 2010
SharePoint for Developers (WSSv3/MOSS2007) Training
Come and learn to build solutions for Windows SharePoint Technologies! fw413 MO Day 1 Architecture We look under the hood to see how Windows SharePoint Services and Microsoft SharePoint Office Server 2007 work. Deployment with the Feature and Solution Framework Windows SharePoint Services v2 provided little in terms of deploying functionality built by developers into the SharePoint environment. We explore the more powerful and common web services needed for building rich off-host applications that leverage SharePoint technologies. intranet? extranet?
DevelopMentor Courses
- Wednesday, June 2, 2010
|
27 Articles match "SharePoint"
|
The Latest from DevelopMentor
|
MORE
|
|
Purchasing Visual Studio 2010
Office and SharePoint Development. Microsoft Office 2007 Ultimate, Communicator 2007, Project 2007 Standard, Visio 2007 Professional, SharePoint Designer 2007. Microsoft SharePoint. Amazon sells various versions of Visual Studio 2010. Here is an overview of versions and this will give you a good indication of prices. Below the prices is a feature comparison also…. Visual Studio Professional. Plain. Upgrade from 2005/2008. with MSDN. Visual Studio Premium. with new MSDN. with MSDN renewal. Visual Studio Utlimate. with new MSDN. with MSDN renewal. Debugging & Diagnostic.
The Blomsma Code
- Tuesday, July 13, 2010
Adding StarterSTS as a Claims Provider for ADFS2
This allows to “plugin” the STS into ADFS2 or Sharepoint as a claims provider. The v1 beta of StarterSTS has an updated relying party configuration section. Here’s a quick walkthrough for ADFS2: Register StarterSTS as claims provider in ADFS. This is really easy. Simply go to the ADFS2 configuration console and add a new claims provider. Then point the wizard to the StarterSTS WS-Federation metadata file (either by URL or using a file path). Afterwards you have to add some claim rules – to get started you could add a pass-through rule for the name claim.
www.leastprivilege.com
- Sunday, February 28, 2010
Sessions for 3rd Dutch Code Camp on 21-Nov-2009
SharePoint nightmares. The sessions for the 3rd Dutch Code Camp have been posted to www.codecamp.nl. The Code Camp will be held on November 21, 2009 at the Hogeschool in Rotterdam (Netherlands). Tijdslot. Track A. Track B. Track C. 09:30 - 10:45. Around.NET Framework 4 in one hour. Roland Guijt. ASP.NET - MVC 2.0. Sander Gerz. Windows Mobile en het werken met data. Arjan van Huizen. 11:00 - 12:15. ADO.NET EF 4.0. Kurt Claeys. Marianne van Wanrooij. iPhone development met jQTouch. Maurice de Beijer. 13:15 - 14:30. VSTO 2010 met Office 2010. Hassan Fadilli. Timmy Kokke. 14:45 - 16:00.
The Blomsma Code
- Tuesday, November 10, 2009
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Remove Login box when anonymous users download office document from SharePoint Site
When developing Extranet/Internet site in SharePoint you often want to allow anonymous access and this works fairly well. The problem is that office tries to be intelligent and issues a Microsoft Office Protocol Discovery request to see how much the user is allowed to do, but SharePoint responds with access denied until the users logs in. The essential code is fairly simple: Tags: SharePoint But there is one are where the out of the box experience fails regarding anonymous access and that is when you allow the users to download Microsoft Office documents.
The Black Knight Sings
- Wednesday, July 16, 2008
-
Remove the Search Box from SharePoint Sites
Sometimes you don't want your users to be able to search on your SharePoint site. Fortunately SharePoint makes this very easy. The different version of SharePoint has different requirements for the Search box and the way these different serach boxes are implemented are using the Delegate feature of WSS. Tags: SharePoint Part one of this is then to remove your site from the content source in SSP, but you probably also want to remove the Search box from every page in your site. The source files are here and a precooked solution file is here.
The Black Knight Sings
- Friday, August 15, 2008
-
Giving end users a list of all the SharePoint sites they have access to
When You’re running a medium sized SharePoint Farm you may often get requests from end users for a list of all the SharePoint sites they have access to. Tags: SharePoint ve implemented a small feature which provides this information as an application page, which you can access through a new menu item on the Welcome menu. The implementation of this is quiet simple: Add a menuitem to the Welcome menu pointing to our own application page: < CustomAction Id = " 6346660F-707E-40d2-A7CF-AB6BAC7A98FD ". Location = " Microsoft.SharePoint.StandardMenu ". Sequence = " 400 ".
The Black Knight Sings
- Sunday, April 26, 2009
-
Custom pagers for SPGridView
Tags: SharePoint
The Black Knight Sings
- Friday, December 19, 2008
-
Caching a SharePoint list as a datatable
If you need something similar then here is my class, it doesn't deal with item level permissions, so if you need that you'll have to implement something different: Tags: SharePoint For one of my current projects I needed to show a SPGridView with data from a small list on the frontpage of the Intranet. The list wasn't very small so didn't want to read if from the database on every hit of the frontpage, but on the hand it was so big that I couldn't cache it. Now the big question was how to cache it.
The Black Knight Sings
- Friday, December 19, 2008
-
List all SharePoint groups a user belongs to
This is just a small Utility requested on one of the SharePoint Newsgroups. It uses the UserGroup web service to list all the SharePoint Groups a user belongs to in a specified Site Collection. Tags: SharePoint It's a small console application which requires two parameters: ···The first parameter is the Url of the site collection including protocol (example: [link]. ···The second parameter is the full username including Domain (example: MOSSWORKuser). using System; using System.IO; using System.Xml; using ListUsersGroups.ug; namespace ListUsersGroups. {. class Program. {.
The Black Knight Sings
- Monday, July 20, 2009
-
FeatureReceiver To Cleanup WebPart Files
Tags: SharePoint
The Black Knight Sings
- Monday, July 14, 2008
|
|
|