Complex SharePoint Web Part Properties - Wesley Bakker Complex SharePoint Web Part Properties Web part properties not always consist of strings and integers. Sometimes your properties are a little bit more complicated. Working with ASP.NET 2.0 Web Parts and Windows SharePoint Services 3.0 Summary: Explore the advantages of creating ASP.NET 2.0 Web Parts and hosting them by using Windows SharePoint Services 3.0. Learn best practices for deploying the custom Web Parts to SharePoint sites. (19 printed pages) Erika Ehrli, Microsoft Corporation Jo-Anne West, Microsoft Corporation March 2007 Applies to: Microsoft Office SharePoint Server 2007, Microsoft Office SharePoint Portal Server 2003, Windows SharePoint Services 3.0, ASP.NET 2.0.
Back in the Zone with ZoneTabs I’m back after a long break from posting to announce the availability of a new web part that you may find helpful. Zone Tabs 2.0 is a new version of a tab web part I previously released on GotDotNet that helps reduce clutter on a web part page by allowing you to attach the other web parts in a zone to tabs. (A web part zone is one of those rectangular areas where you can drop your web parts on a page.) For example, a web part zone might contain 10 web parts, but instead of scrolling to see them all, the user clicks different tabs to show a subset of related web parts at any one time. As you can see in the screen shot, it’s possible to use more than one set of Zone Tabs on a page so long as they’re each in their own zone. In addition, Zone Tabs can be set up to pivot the web part zone between horizontal and vertical views, a function that is generally performed by developing a new page in Visual Studio or customizing a page in SharePoint Designer 2007.
Principles and Practice Using C++ Modified June 8, 2014 This is the support site for Stroustrup: "Programming: Principles and Practice using C++ (Second Edition)" Addison-Wesley 2014, ISBN 978-0-321-99278-9. support for the first edition of PPP This book is aimed at beginners taking a programming course and people learning C++ as self study. For details, see these samples: This book is based on a course I designed for engineering freshmen at Texas A&M University.
Mark Brown's Blog : ASP.NET 2.0 Web Part vs Sharepoint 2007 Web Parts So what is the deal with ASP.NET web parts and SharePoint web parts? Well, glad you asked. I am not an authoritative source but thought I would document a few links since an associate of mine was asking and I was curious. Resources Sharepoint Web Parts Overview Windows SharePoint Services Web Part
SharePoint Fix: AJAX enable Zone Tabs Web part in Sharepoint 1. Install Zone Tabs web part from All credit goes to Bob German who developed this wonderful web part: Installation steps:a) Add Solution: (assuming you copy the .wsp file in C drive)stsadm.exe –o addsolution –filename “C:\ EasyTabParts.wsp” Corrupt WebConfigModifications in SharePoint I have been trying out different values for SPWebConfigModification properties and in doing so I managed to corrupt the SPWebConfigFileChanges persisted class. This class manages the updates to web.config and persists itself to the SharePoint_Config database. In trying out different property values I hit one that was accepted, but it caused some kind of corruption.
SharePoint 2010 Cookbook: Programmer's Guide to the Filter Web Part If you take a look at our SharePoint List Filters Collection, you will see that several of the most useful filters are made available on WSS, allowing users access to the same easy, flexible filtering systems available in MOSS via list filters for Choice, Current User, Date, Query String, and Text. With list filters such as these, you can easily provide end users with a simple system to temporarily and non-destructively adjust the way Web Parts consume data. Challenge The SharePoint List Filters Collection connects to Web Parts which contain one or more sets of data and provides users with the ability to change the view of the data. The actual filter Web Part can be visible on the page (to ask for user input, such as a date or text), or they can be invisible, as is the case with the Current User filter, which filters data based on the user who is logged on to the computer.
SharePoint 2007 An XSLT dataview is a great way to modify the look and feel of displayed data in a sharepoint site. The dataview web part is able to display data from either sharepoint lists, or from external data sources. This article will focus on how to create a simple xslt dataview for a sharepoint list. First we will create a sharepoint list - Contacts, and fill it with some sample data: Now, lets create a new page that we will use to create the xslt dataview in: Open the page in SharePoint Designer (see my previous article if you forgot how - you will need to detach it from the page layout first!). Web.config modification manager for SharePoint The SPWebConfigModification class is used by features to make changes to web.config which need to be applied to all web front ends in the WSS farm. These modifications are 'remembered' by WSS and this allows WSS to remove them when they are no longer required. Sometimes it is desirable to make modifications to web.config without having to write a feature. If you want to see the stack trace when you get 'An unexpected error has occured' or if you want to add or change an existing 'appSetting' entry, it would be useful to be able to quickly do this via the browser.