.Net and Team System News - Nadège DEROUSSEN

mercredi 27 septembre 2006

NHibernate Beta 1.2 disponible

Une nouvelle version de NHibernate est disponible en version Beta. Cette nouvelle version corrige quelques bugs et propose de nouvelles fonctionnalités qui sont décrites sur le site : Release Notes

samedi 16 septembre 2006

Paging alphabétique dans une Datagrid

Afin d'éviter de trop grandes listes sur une page, les datagrids nous permettent d'utiliser un système de paging. Il s'agit en fait de n'afficher q'un certain nombre d'enregistrements à la fois. Ce système propose à l'utilisateur de visualiser les autres enregistements en choisissant un numéro de page ou en cliquant sur les flèches précédentes ou suivantes. Ce système est très utile mais combien d'entre nous n'ont pas cherché à afficher non pas x enregistrements par page mais les enregistrements correspondant à une lettre de l'alphabet, tel un répertoire de contacts ?
Pour ceux qui se demandent encore comment résoudre le problème, Bipin Joshi, webmaster de DotnetBips.com, nous propose un article expliquant tout cela. Rien de bien compliqué, le code source est téléchargeable : Alphabetical Paging in DataGrid. L'article parle de datagrid et s'applique donc au framework 1.0 et 1.1 mais vous pourrez très facilement l'appliquer au nouveau framework 2.0.

mardi 5 septembre 2006

Developing 3 tier web sites in ASP.NET 2.0

Un article sur le développement d'application 3 Tier tiré de site : DotNetBips

Many months back I wrote a series of articles that explained in plain words N-tier application development. The series can still be found at:

N-Tier Applications and .NET N-Tier Applications and .NET: A Simple Example N-Tier Applications and .NET: Achieving Isolation between DAL and BOL N-Tier Applications and .NET: Achieving Isolation between UI and BOL Then came .NET 2.0. Many things changed especially for ASP.NET. So I decided to write a sequel to the earlier series specifically for ASP.NET 2.0. This article will explain how a typical 3-tier architecture can be used in ASP.NET 2.0 with the help of Generics based collections and Data Source Controls. Note that the article aims at showing a simple 3 tier architecture and not at teaching you generics, data bound controls and data source controls.

Source de l'article : Developing 3 tier web sites in ASP.NET 2.0