Contents tagged with SharePoint
-
More on SharePoint 2007 and ASP.NET AJAX
Mike Ammerlaan (PM for WSS) stepped up and posted a detailed article about the integration of ASP.NET AJAX and SharePoint.
-
SQL Server 2005 SP2 RTM
Service Pack 2 for SQL Server 2005 has RTM-ed! Why do you read SQL related stuff on my blog? Well this service pack includes the long awaited Reporting Services web parts for SharePoint 2007 (WSS v3 and MOSS 2007). From the what's new page:
-
The U2U SharePoint Team in South Africa!
It's not the first time that both Patrick and myself are in Africa at the same time, but it's the first time that we are at the same time in the same country: South Africa! This week Patrick is in Cape Town for the MS EMEA SharePoint 2007 Tour and I'm doing the same thing in Johannesburg.
-
Scott Guthrie: "ASP.NET AJAX support in SharePoint 2007 coming later this year"
Yesterday I attended one of the sessions Scott Guthrie presented at the VISUG event in Mechelen (Belgium). In this session Scott covered some of his ASP.NET 2.0 and ASP.NET AJAX tips and tricks: cool stuff. When started talking about ASP.NET AJAX the audience (+300 people!) started asking some questions, in my turn I asked Scott about using ASP.NET AJAX in SharePoint 2007. Scott confirmed Daniel's statements (not supported, only use the the client side scripts, server-side controls don't work, etc), but more interesting; he told the audience that ASP.NET AJAX will be supported in SharePoint 2007. How is Microsoft going to pull off this trick? <quote>ASP.NET Ajax will be supported in SharePoint when we release a service pack for SharePoint, we will ship it later this year.</quote> Great!!
-
Forms Based Authentication in SharePoint: Web Administration Tool
One of the big new things (among tons of others of course) in SharePoint 2007 (both WSS v3 and MOSS 2007) is the fact that SharePoint now uses the authentication provider model of ASP.NET 2.0. This means that you have store the user accounts and passwords in another data source than Active Directory (the only option in SharePoint 2003), for example a SQL Server database. The good news is that SharePoint is relying on ASP.NET 2.0 for this, so if you know how to enable Forms Based Authentication in ASP.NET 2.0 sites, you also know how to enable it in SharePoint 2007! Enabling it is one thing, adding users to the database that stores the user accounts is another thing. Techies probably know lots of ways to create user accounts: stored procedures, sql statements, Visual Studio's Administration Site, ... But out-of-the-box there is no UI available to actually do that in ASP.NET 2.0/SharePoint 2007.
-
Joel on Site Collection Sizing
Mister "SharePoint Administration" himself, Joel Oleson, has written a nice post about Site Collection sizing in SharePoint 2007.
-
Nifty InfoPath 2007/SharePoint 2007 Feature
Every once in a while you bump into a new feature in the 2007 Microsoft Office System and you think "hey! this is really cool!". This happened to me last week when I was playing around with InfoPath 2007. To be able to share with you my little aha erlibnis (credit for this term goes to my former math teacher), let's assume you've got following InfoPath form: the U2U Course Order form. A very basic form with Customer, Email, Course and Date fields, and a repeating table with student name and email fields.
-
ASP.NET AJAX and SharePoint 2007: SharePoint AJAX Toolkit
ASP.NET AJAX has just RTM-ed, cool! Even cooler: Daniel Larson has released the SharePoint AJAX Toolkit on CodePlex, which uses the ASP.NET AJAX framework. This sounds very promising!
-
WSS v3 and MOSS 2007 SDKs Available (RTM)
[Via Bill Simser] Required for every SharePoint developer:
-
How to get a List of Web Parts on a Page
Recently I got a question from a student how to get a list of all the web parts (in code) that are displayed on a specific SharePoint Web Part Page. This could be useful if you would like to close all the web parts at once, add web parts programmatically etc. By using the SharePoint object model this is pretty easy, especially if you want to retrieve that list with code running in a web part. The WebPartManager property of the WebPart base class, gives you access to a collection of all the WebPartZones available on the page. Once you've got the zones, you can get the web part instances by using the WebParts property. The following web part code will display a small list of all the web parts found on the page, including the name of the web part class and the web parts zone.