Patrice 's Blog

A blog about .net

  Home :: Contact :: Syndication  :: Login
  252 Posts :: 13 Stories :: 37 Comments :: 0 Trackbacks

Article Categories

Archives

Message Categories

Blogs Communautaires

Blogs Techniques

Moi

Outils

Sites .Net

WebSites.WithMe();

Le Tech'Ed 2005 commence aujourd'hui pour les personnes participantes aux pré-conférence. La conférence se déroule comme l'année dernière à Amsterdam et réunit plusieurs milliers de personnes venant de toute l'europe.

Plusieurs pré-conférences sont accessibles, et je suis en train d'assister à celle traitant d'ASP.net 2 et présentée par Jeff Prossise (Wintellect) un des plus grands experts ASP.net qui travaille en collaboration étroite avec les équipes de développement de Microsoft.

Et si je poste dès maintenant alors que la session se termine en fin de journée, c'est que j'ai failli m'étrangler en regardant la démonstration sur ObjectDataSource. L'ObjectDataSource est un nouveau contrôle source de données proposé par le framework .net 2 qui permet de binder des contrôles (un gridview par exemple) directement avec des objets métiers sans passer par des objets liés aux données comme les dataset, datareader, etc...

Et comme d'habitude sur ce que l'on peut voir sur le net ou même dans les MOC officiels de Microsoft (!), Jeff Prosise utilisa l'ObjectDataSource pour binder un gridview avec... un DATASET !!! grrr...arrgghhh....

Regardons le code suivant :

   1:  using System;
   2:  using System.Collections.Generic;
   3:  using System.Text;
   4:   
   5:  namespace SupinfoProjects.Domain
   6:  {
   7:      public class Ecole
   8:      {
   9:          private string m_name;
  10:          private int m_id;
  11:   
  12:          public string Name
  13:          {
  14:              get { return m_name; }
  15:              set { m_name = value; }
  16:          }
  17:   
  18:          public int Id
  19:          {
  20:              get { return m_id; }
  21:              set { m_id = value; }
  22:          }
  23:   
  24:          //Obligatoire pour l'ObjectDataSource
  25:          public Ecole() 
  26:          {}
  27:   
  28:          public Ecole(int id, string name)
  29:          {
  30:              m_name = name;
  31:              m_id = id;
  32:          }
  33:      }
  34:  }

Voilà pour notre objet métier, ensuite au niveau de notre DAL :

   1:  using System;
   2:  using System.Collections.Generic;
   3:  using System.Text;
   4:  using System.Data;
   5:  using System.Data.SqlClient;
   6:  using SupinfoProjects.Domain;
   7:  using SupinfoProjects.DAL.Factories;
   8:   
   9:  namespace SupinfoProjects.DAL
  10:  {
  11:      public class EcolesDAO
  12:      {
  13:
  14:   
  15:          public static IList GetAllEcoles()
  16:          {
  17:      
  18:              List schools = new List();
  19:   
  20:              try
  21:              {
  22:                  GenericCommand cmdGetEcoles = new GenericCommand();
  23:                  cmdGetEcoles.CommandText = "getAllEcoles";
  24:   
  25:                  SqlDataReader rdEcoles = cmdGetEcoles.ExecuteReader();
  26:   
  27:                  if (rdEcoles.HasRows)
  28:                      while (rdEcoles.Read())
  29:                          schools.Add(new Ecole((int)rdEcoles[0], rdEcoles[1].ToString()));
  30:   
  31:                  rdEcoles.Close();
  32:                  cmdGetEcoles.Dispose();
  33:                  
  34:              }
  35:              catch (SqlException sqlex)
  36:              {
  37:                  throw new Exceptions.DataAccessException("ca a merde", sqlex); 
  38:              }
  39:              catch (Exception)
  40:              {
  41:   
  42:              }
  43:              return schools;
  44:          }

 

Dans la couche service :

   1:  using System;
   2:  using System.Collections.Generic;
   3:  using System.Text;
   4:  using SupinfoProjects.Domain;
   5:  using SupinfoProjects.BLL.Exceptions;
   6:   
   7:  namespace SupinfoProjects.BLL.Admin
   8:  {
   9:      public class EcoleFactory
  10:      {
  11:   
  12:          public static IList GetEcoles()
  13:          {
  14:               
  15:              try
  16:              {
  17:                  return DAL.EcolesDAO.GetAllEcoles();
  18:              }
  19:              catch (DAL.Exceptions.DataAccessException dae)
  20:              {
  21:   
  22:                  throw new ServiceException("Erreur lors de la récupération de la liste des ecoles", dae);
  23:              }
  24:          }

Au niveau de notre IHM, dans une page aspx :

   1:  <asp:GridView ID="GridView1" runat="server" DataSourceID="ObjectDataSource2" AutoGenerateColumns="False">
   2:      <Columns>
   3:          <asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
   4:          <asp:BoundField DataField="Id" HeaderText="Id" SortExpression="Id" Visible="False" />
   5:          <asp:BoundField DataField="Name" HeaderText="Nom de l'école" SortExpression="Name" />
   6:      Columns>
   7:      asp:GridView>
   8:       <br />
   9:        
  10:      <asp:ObjectDataSource ID="ObjectDataSource2" runat="server" TypeName="SupinfoProjects.BLL.Admin.EcoleFactory" SelectMethod="GetEcoles" DataObjectTypeName="SupinfoProjects.Domain.Ecole" DeleteMethod="DeleteEcole" InsertMethod="CreateEcole" UpdateMethod="UpdateEcole">
  11:      asp:ObjectDataSource>

 

N'est-ce pas beaucoup plus élégant et beaucoup plus pertinent ? Je n'arrive vraiment pas à comprendre que l'on puisse parler de SQL, de dataset, lorsque l'on traite de l'ObjectDataSource.

Le framework .net 2 apporte plusieurs éléments fondamentaux améliorant les fonctionnalités objets que cela soit au niveau des langages (support des génériques par exemple), ou via l'ObjectDataSource. Pourquoi s'en priver et continuer à développer comme avant ?

posted on lundi 4 juillet 2005 12:00

Feedback

# [TechEd 2005] - Let's go ! 04/07/2005 12:23 Dubrow blog's [Benjamin Gauthey]


# [TechEd 2005] - Let's go ! 04/07/2005 12:42 Dubrow blog's [Benjamin Gauthey]


# [Event] Tech'Ed Europe 2006 09/10/2006 20:35 Patrice Lamarche
Comme vous le savez probablement, le Tech'Ed Europe change de formule et se décompose en 2 évènements...

# re: [Tech'Ed05] Pré-conférence sur ASP.net 2 21/10/2006 23:18 sdfsdf
http://xoomer.alice.it/webcamporno/px-1.html
http://xoomer.alice.it/webcamporno/px-2.html
http://xoomer.alice.it/webcamporno/px-3.html
http://xoomer.alice.it/webcamporno/px-4.html
http://xoomer.alice.it/webcamporno/px-5.html
http://xoomer.alice.it/webcamporno/px-6.html
http://xoomer.alice.it/webcamporno/px-7.html
http://xoomer.alice.it/webcamporno/px-8.html
http://xoomer.alice.it/webcamporno/px-9.html
http://xoomer.alice.it/webcamporno/px-10.html
http://xoomer.alice.it/webcamporno/px-11.html
http://xoomer.alice.it/webcamporno/px-12.html
http://xoomer.alice.it/webcamporno/px-13.html
http://xoomer.alice.it/webcamporno/px-14.html
http://xoomer.alice.it/webcamporno/px-15.html
http://xoomer.alice.it/webcamporno/px-16.html
http://xoomer.alice.it/webcamporno/px-17.html
http://xoomer.alice.it/webcamporno/px-18.html
http://xoomer.alice.it/webcamporno/px-19.html
http://xoomer.alice.it/webcamporno/px-20.html
http://xoomer.alice.it/webcamporno/px-21.html
http://xoomer.alice.it/webcamporno/px-22.html
http://xoomer.alice.it/webcamporno/px-23.html
http://xoomer.alice.it/webcamporno/px-24.html
http://xoomer.alice.it/webcamporno/px-25.html
http://xoomer.alice.it/webcamporno/px-26.html
http://xoomer.alice.it/webcamporno/px-27.html
http://xoomer.alice.it/webcamporno/px-28.html
http://xoomer.alice.it/webcamporno/px-29.html
http://xoomer.alice.it/webcamporno/px-30.html
http://xoomer.alice.it/webcamporno/px-31.html
http://xoomer.alice.it/webcamporno/px-32.html
http://xoomer.alice.it/webcamporno/px-33.html
http://xoomer.alice.it/webcamporno/px-34.html
http://xoomer.alice.it/webcamporno/px-35.html
http://xoomer.alice.it/webcamporno/px-36.html
http://xoomer.alice.it/webcamporno/px-37.html
http://xoomer.alice.it/webcamporno/px-38.html
http://xoomer.alice.it/webcamporno/px-39.html
http://xoomer.alice.it/webcamporno/px-40.html
http://xoomer.alice.it/webcamporno/px-41.html
http://xoomer.alice.it/webcamporno/px-42.html
http://xoomer.alice.it/webcamporno/px-43.html
http://xoomer.alice.it/webcamporno/px-44.html
http://xoomer.alice.it/webcamporno/px-45.html
http://xoomer.alice.it/webcamporno/px-46.html
http://xoomer.alice.it/webcamporno/px-47.html
http://xoomer.alice.it/webcamporno/px-48.html
http://xoomer.alice.it/webcamporno/px-49.html
http://xoomer.alice.it/webcamporno/px-50.html
http://xoomer.alice.it/webcamporno/px-51.html
http://xoomer.alice.it/webcamporno/px-52.html
http://xoomer.alice.it/webcamporno/px-53.html
http://xoomer.alice.it/webcamporno/px-54.html
http://xoomer.alice.it/webcamporno/px-55.html
http://xoomer.alice.it/webcamporno/px-56.html
http://xoomer.alice.it/webcamporno/px-57.html
http://xoomer.alice.it/webcamporno/px-58.html
http://xoomer.alice.it/webcamporno/px-59.html
http://xoomer.alice.it/webcamporno/px-60.html
http://xoomer.alice.it/webcamporno/px-61.html
http://xoomer.alice.it/webcamporno/px-62.html
http://xoomer.alice.it/webcamporno/px-63.html
http://xoomer.alice.it/webcamporno/px-64.html
http://xoomer.alice.it/webcamporno/px-65.html
http://xoomer.alice.it/webcamporno/px-66.html
http://xoomer.alice.it/webcamporno/px-67.html
http://xoomer.alice.it/webcamporno/px-68.html
http://xoomer.alice.it/webcamporno/px-69.html
http://xoomer.alice.it/webcamporno/px-70.html
http://xoomer.alice.it/webcamporno/px-71.html
http://xoomer.alice.it/webcamporno/px-72.html
http://xoomer.alice.it/webcamporno/px-73.html
http://xoomer.alice.it/webcamporno/px-74.html
http://xoomer.alice.it/webcamporno/px-75.html
http://xoomer.alice.it/webcamporno/px-76.html
http://xoomer.alice.it/webcamporno/px-77.html
http://xoomer.alice.it/webcamporno/px-78.html
http://xoomer.alice.it/webcamporno/px-79.html
http://xoomer.alice.it/webcamporno/px-80.html
http://xoomer.alice.it/webcamporno/px-81.html
http://xoomer.alice.it/webcamporno/px-82.html
http://xoomer.alice.it/webcamporno/px-83.html
http://xoomer.alice.it/webcamporno/px-84.html
http://xoomer.alice.it/webcamporno/px-85.html
http://xoomer.alice.it/webcamporno/px-86.html
http://xoomer.alice.it/webcamporno/px-87.html
http://xoomer.alice.it/webcamporno/px-88.html
http://xoomer.alice.it/webcamporno/px-89.html
http://xoomer.alice.it/webcamporno/px-90.html
http://xoomer.alice.it/webcamporno/px-91.html
http://xoomer.alice.it/webcamporno/px-92.html
http://xoomer.alice.it/webcamporno/px-93.html
http://xoomer.alice.it/webcamporno/px-94.html
http://xoomer.alice.it/webcamporno/px-95.html
http://xoomer.alice.it/webcamporno/px-96.html
http://xoomer.alice.it/webcamporno/px-97.html
http://xoomer.alice.it/webcamporno/px-98.html
http://xoomer.alice.it/webcamporno/px-99.html
http://xoomer.alice.it/webcamporno/px-100.html
http://xoomer.alice.it/webcamporno/px-101.html
http://xoomer.alice.it/webcamporno/px-102.html
http://xoomer.alice.it/webcamporno/px-103.html
http://xoomer.alice.it/webcamporno/px-104.html
http://xoomer.alice.it/webcamporno/px-105.html
http://xoomer.alice.it/webcamporno/px-106.html
http://xoomer.alice.it/webcamporno/px-107.html
http://xoomer.alice.it/webcamporno/px-108.html
http://xoomer.alice.it/webcamporno/px-109.html
http://xoomer.alice.it/webcamporno/px-110.html
http://xoomer.alice.it/webcamporno/px-111.html
http://xoomer.alice.it/webcamporno/px-112.html
http://xoomer.alice.it/webcamporno/px-113.html
http://xoomer.alice.it/webcamporno/px-114.html
http://xoomer.alice.it/webcamporno/px-115.html
http://xoomer.alice.it/webcamporno/px-116.html
http://xoomer.alice.it/webcamporno/px-117.html
http://xoomer.alice.it/webcamporno/px-118.html
http://xoomer.alice.it/webcamporno/px-119.html
http://xoomer.alice.it/webcamporno/px-120.html
http://xoomer.alice.it/webcamporno/px-121.html
http://xoomer.alice.it/webcamporno/px-122.html
http://xoomer.alice.it/webcamporno/px-123.html
http://xoomer.alice.it/webcamporno/px-124.html
http://xoomer.alice.it/webcamporno/px-125.html
http://xoomer.alice.it/webcamporno/px-126.html
http://xoomer.alice.it/webcamporno/px-127.html
http://xoomer.alice.it/webcamporno/px-128.html
http://xoomer.alice.it/webcamporno/px-129.html
http://xoomer.alice.it/webcamporno/px-130.html
http://xoomer.alice.it/webcamporno/px-131.html
http://xoomer.alice.it/webcamporno/px-132.html
http://xoomer.alice.it/webcamporno/px-133.html
http://xoomer.alice.it/webcamporno/px-134.html
http://xoomer.alice.it/webcamporno/px-135.html
http://xoomer.alice.it/webcamporno/px-136.html


# re: [Tech'Ed05] Pré-conférence sur ASP.net 2 21/10/2006 23:19 sdf
http://xoomer.alice.it/lesbiennes/px-2.html
http://xoomer.alice.it/lesbiennes/px-3.html
http://xoomer.alice.it/lesbiennes/px-4.html
http://xoomer.alice.it/lesbiennes/px-5.html
http://xoomer.alice.it/lesbiennes/px-6.html
http://xoomer.alice.it/lesbiennes/px-7.html
http://xoomer.alice.it/lesbiennes/px-8.html
http://xoomer.alice.it/lesbiennes/px-9.html
http://xoomer.alice.it/lesbiennes/px-10.html
http://xoomer.alice.it/lesbiennes/px-11.html
http://xoomer.alice.it/lesbiennes/px-12.html
http://xoomer.alice.it/lesbiennes/px-13.html
http://xoomer.alice.it/lesbiennes/px-14.html
http://xoomer.alice.it/lesbiennes/px-15.html
http://xoomer.alice.it/lesbiennes/px-16.html
http://xoomer.alice.it/lesbiennes/px-17.html
http://xoomer.alice.it/lesbiennes/px-18.html
http://xoomer.alice.it/lesbiennes/px-19.html
http://xoomer.alice.it/lesbiennes/px-20.html
http://xoomer.alice.it/lesbiennes/px-21.html
http://xoomer.alice.it/lesbiennes/px-22.html
http://xoomer.alice.it/lesbiennes/px-23.html
http://xoomer.alice.it/lesbiennes/px-24.html
http://xoomer.alice.it/lesbiennes/px-25.html
http://xoomer.alice.it/lesbiennes/px-26.html
http://xoomer.alice.it/lesbiennes/px-27.html
http://xoomer.alice.it/lesbiennes/px-28.html
http://xoomer.alice.it/lesbiennes/px-29.html
http://xoomer.alice.it/lesbiennes/px-30.html
http://xoomer.alice.it/lesbiennes/px-31.html
http://xoomer.alice.it/lesbiennes/px-32.html
http://xoomer.alice.it/lesbiennes/px-33.html
http://xoomer.alice.it/lesbiennes/px-34.html
http://xoomer.alice.it/lesbiennes/px-35.html
http://xoomer.alice.it/lesbiennes/px-36.html
http://xoomer.alice.it/lesbiennes/px-37.html
http://xoomer.alice.it/lesbiennes/px-38.html
http://xoomer.alice.it/lesbiennes/px-39.html
http://xoomer.alice.it/lesbiennes/px-40.html
http://xoomer.alice.it/lesbiennes/px-41.html
http://xoomer.alice.it/lesbiennes/px-42.html
http://xoomer.alice.it/lesbiennes/px-43.html
http://xoomer.alice.it/lesbiennes/px-44.html
http://xoomer.alice.it/lesbiennes/px-45.html
http://xoomer.alice.it/lesbiennes/px-46.html
http://xoomer.alice.it/lesbiennes/px-47.html
http://xoomer.alice.it/lesbiennes/px-48.html
http://xoomer.alice.it/lesbiennes/px-49.html
http://xoomer.alice.it/lesbiennes/px-50.html
http://xoomer.alice.it/lesbiennes/px-51.html
http://xoomer.alice.it/lesbiennes/px-52.html
http://xoomer.alice.it/lesbiennes/px-53.html
http://xoomer.alice.it/lesbiennes/px-54.html
http://xoomer.alice.it/lesbiennes/px-55.html
http://xoomer.alice.it/lesbiennes/px-56.html
http://xoomer.alice.it/lesbiennes/px-57.html
http://xoomer.alice.it/lesbiennes/px-58.html
http://xoomer.alice.it/lesbiennes/px-59.html
http://xoomer.alice.it/lesbiennes/px-60.html
http://xoomer.alice.it/lesbiennes/px-61.html
http://xoomer.alice.it/lesbiennes/px-62.html
http://xoomer.alice.it/lesbiennes/px-63.html
http://xoomer.alice.it/lesbiennes/px-64.html
http://xoomer.alice.it/lesbiennes/px-65.html
http://xoomer.alice.it/lesbiennes/px-66.html
http://xoomer.alice.it/lesbiennes/px-67.html
http://xoomer.alice.it/lesbiennes/px-68.html
http://xoomer.alice.it/lesbiennes/px-69.html
http://xoomer.alice.it/lesbiennes/px-70.html
http://xoomer.alice.it/lesbiennes/px-71.html
http://xoomer.alice.it/lesbiennes/px-72.html
http://xoomer.alice.it/lesbiennes/px-73.html
http://xoomer.alice.it/lesbiennes/px-74.html
http://xoomer.alice.it/lesbiennes/px-75.html
http://xoomer.alice.it/lesbiennes/px-76.html
http://xoomer.alice.it/lesbiennes/px-77.html
http://xoomer.alice.it/lesbiennes/px-78.html
http://xoomer.alice.it/lesbiennes/px-79.html
http://xoomer.alice.it/lesbiennes/px-80.html
http://xoomer.alice.it/lesbiennes/px-81.html
http://xoomer.alice.it/lesbiennes/px-82.html
http://xoomer.alice.it/lesbiennes/px-83.html
http://xoomer.alice.it/lesbiennes/px-84.html
http://xoomer.alice.it/lesbiennes/px-85.html
http://xoomer.alice.it/lesbiennes/px-86.html
http://xoomer.alice.it/lesbiennes/px-87.html
http://xoomer.alice.it/lesbiennes/px-88.html
http://xoomer.alice.it/lesbiennes/px-89.html
http://xoomer.alice.it/lesbiennes/px-90.html
http://xoomer.alice.it/lesbiennes/px-91.html
http://xoomer.alice.it/lesbiennes/px-92.html
http://xoomer.alice.it/lesbiennes/px-93.html
http://xoomer.alice.it/lesbiennes/px-94.html
http://xoomer.alice.it/lesbiennes/px-95.html
http://xoomer.alice.it/lesbiennes/px-96.html
http://xoomer.alice.it/lesbiennes/px-97.html
http://xoomer.alice.it/lesbiennes/px-98.html
http://xoomer.alice.it/lesbiennes/px-99.html
http://xoomer.alice.it/lesbiennes/px-100.html
http://xoomer.alice.it/lesbiennes/px-101.html
http://xoomer.alice.it/lesbiennes/px-102.html
http://xoomer.alice.it/lesbiennes/px-103.html
http://xoomer.alice.it/lesbiennes/px-104.html
http://xoomer.alice.it/lesbiennes/px-105.html
http://xoomer.alice.it/lesbiennes/px-106.html
http://xoomer.alice.it/lesbiennes/px-107.html
http://xoomer.alice.it/lesbiennes/px-108.html
http://xoomer.alice.it/lesbiennes/px-109.html
http://xoomer.alice.it/lesbiennes/px-110.html
http://xoomer.alice.it/lesbiennes/px-111.html
http://xoomer.alice.it/lesbiennes/px-112.html
http://xoomer.alice.it/lesbiennes/px-113.html
http://xoomer.alice.it/lesbiennes/px-114.html
http://xoomer.alice.it/lesbiennes/px-115.html
http://xoomer.alice.it/lesbiennes/px-116.html
http://xoomer.alice.it/lesbiennes/px-117.html
http://xoomer.alice.it/lesbiennes/px-118.html
http://xoomer.alice.it/lesbiennes/px-119.html
http://xoomer.alice.it/lesbiennes/px-120.html
http://xoomer.alice.it/lesbiennes/px-121.html
http://xoomer.alice.it/lesbiennes/px-122.html
http://xoomer.alice.it/lesbiennes/px-123.html
http://xoomer.alice.it/lesbiennes/px-124.html
http://xoomer.alice.it/lesbiennes/px-125.html
http://xoomer.alice.it/lesbiennes/px-126.html
http://xoomer.alice.it/lesbiennes/px-127.html
http://xoomer.alice.it/lesbiennes/px-128.html
http://xoomer.alice.it/lesbiennes/px-129.html
http://xoomer.alice.it/lesbiennes/px-130.html
http://xoomer.alice.it/lesbiennes/px-131.html
http://xoomer.alice.it/lesbiennes/px-132.html
http://xoomer.alice.it/lesbiennes/px-133.html
http://xoomer.alice.it/lesbiennes/px-134.html
http://xoomer.alice.it/lesbiennes/px-135.html
http://xoomer.alice.it/lesbiennes/px-136.html
http://xoomer.alice.it/lesbiennes/px-137.html
http://xoomer.alice.it/lesbiennes/px-138.html
http://xoomer.alice.it/lesbiennes/px-139.html
http://xoomer.alice.it/lesbiennes/px-140.html
http://xoomer.alice.it/lesbiennes/px-141.html
http://xoomer.alice.it/lesbiennes/px-142.html
http://xoomer.alice.it/lesbiennes/px-143.html
http://xoomer.alice.it/lesbiennes/px-144.html
http://xoomer.alice.it/lesbiennes/px-145.html
http://xoomer.alice.it/lesbiennes/px-146.html
http://xoomer.alice.it/lesbiennes/px-147.html
http://xoomer.alice.it/lesbiennes/px-148.html
http://xoomer.alice.it/lesbiennes/px-149.html
http://xoomer.alice.it/lesbiennes/px-150.html
http://xoomer.alice.it/lesbiennes/px-151.html
http://xoomer.alice.it/lesbiennes/px-152.html
http://xoomer.alice.it/lesbiennes/px-153.html
http://xoomer.alice.it/lesbiennes/px-154.html
http://xoomer.alice.it/lesbiennes/px-155.html
http://xoomer.alice.it/lesbiennes/px-156.html
http://xoomer.alice.it/lesbiennes/px-157.html
http://xoomer.alice.it/lesbiennes/px-158.html
http://xoomer.alice.it/lesbiennes/px-159.html
http://xoomer.alice.it/lesbiennes/px-160.html
http://xoomer.alice.it/lesbiennes/px-161.html
http://xoomer.alice.it/lesbiennes/px-162.html
http://xoomer.alice.it/lesbiennes/px-163.html
http://xoomer.alice.it/lesbiennes/px-164.html
http://xoomer.alice.it/lesbiennes/px-165.html
http://xoomer.alice.it/lesbiennes/px-166.html
http://xoomer.alice.it/lesbiennes/px-167.html
http://xoomer.alice.it/lesbiennes/px-168.html
http://xoomer.alice.it/lesbiennes/px-169.html
http://xoomer.alice.it/lesbiennes/px-170.html
http://xoomer.alice.it/lesbiennes/px-171.html
http://xoomer.alice.it/lesbiennes/px-172.html
http://xoomer.alice.it/lesbiennes/px-173.html
http://xoomer.alice.it/lesbiennes/px-174.html
http://xoomer.alice.it/lesbiennes/px-175.html
http://xoomer.alice.it/lesbiennes/px-176.html
http://xoomer.alice.it/lesbiennes/px-177.html
http://xoomer.alice.it/lesbiennes/px-178.html
http://xoomer.alice.it/lesbiennes/px-179.html
http://xoomer.alice.it/lesbiennes/px-180.html
http://xoomer.alice.it/lesbiennes/px-181.html
http://xoomer.alice.it/lesbiennes/px-182.html
http://xoomer.alice.it/lesbiennes/px-183.html
http://xoomer.alice.it/lesbiennes/px-184.html
http://xoomer.alice.it/lesbiennes/px-185.html
http://xoomer.alice.it/lesbiennes/px-186.html
http://xoomer.alice.it/lesbiennes/px-187.html
http://xoomer.alice.it/lesbiennes/px-188.html
http://xoomer.alice.it/lesbiennes/px-189.html
http://xoomer.alice.it/lesbiennes/px-190.html
http://xoomer.alice.it/lesbiennes/px-191.html
http://xoomer.alice.it/lesbiennes/px-192.html
http://xoomer.alice.it/lesbiennes/px-193.html
http://xoomer.alice.it/lesbiennes/px-194.html
http://xoomer.alice.it/lesbiennes/px-195.html
http://xoomer.alice.it/lesbiennes/px-196.html
http://xoomer.alice.it/lesbiennes/px-197.html
http://xoomer.alice.it/lesbiennes/px-198.html
http://xoomer.alice.it/lesbiennes/px-199.html
http://xoomer.alice.it/lesbiennes/px-200.html
http://xoomer.alice.it/lesbiennes/px-201.html
http://xoomer.alice.it/lesbiennes/px-202.html
http://xoomer.alice.it/lesbiennes/px-203.html
http://xoomer.alice.it/lesbiennes/px-204.html
http://xoomer.alice.it/lesbiennes/px-205.html
http://xoomer.alice.it/lesbiennes/px-206.html
http://xoomer.alice.it/lesbiennes/px-207.html
http://xoomer.alice.it/lesbiennes/px-208.html
http://xoomer.alice.it/lesbiennes/px-209.html
http://xoomer.alice.it/lesbiennes/px-210.html
http://xoomer.alice.it/lesbiennes/px-211.html
http://xoomer.alice.it/lesbiennes/px-212.html
http://xoomer.alice.it/lesbiennes/px-213.html
http://xoomer.alice.it/lesbiennes/px-214.html
http://xoomer.alice.it/lesbiennes/px-215.html
http://xoomer.alice.it/lesbiennes/px-216.html
http://xoomer.alice.it/lesbiennes/px-217.html
http://xoomer.alice.it/lesbiennes/px-218.html
http://xoomer.alice.it/lesbiennes/px-219.html
http://xoomer.alice.it/lesbiennes/px-220.html
http://xoomer.alice.it/lesbiennes/px-221.html
http://xoomer.alice.it/lesbiennes/px-222.html
http://xoomer.alice.it/lesbiennes/px-223.html
http://xoomer.alice.it/lesbiennes/px-224.html
http://xoomer.alice.it/lesbiennes/px-225.html
http://xoomer.alice.it/lesbiennes/px-226.html
http://xoomer.alice.it/lesbiennes/px-227.html
http://xoomer.alice.it/lesbiennes/px-228.html
http://xoomer.alice.it/lesbiennes/px-229.html
http://xoomer.alice.it/lesbiennes/px-230.html
http://xoomer.alice.it/lesbiennes/px-231.html
http://xoomer.alice.it/lesbiennes/px-232.html
http://xoomer.alice.it/lesbiennes/px-233.html
http://xoomer.alice.it/lesbiennes/px-234.html
http://xoomer.alice.it/lesbiennes/px-235.html
http://xoomer.alice.it/lesbiennes/px-236.html
http://xoomer.alice.it/lesbiennes/px-237.html
http://xoomer.alice.it/lesbiennes/px-238.html
http://xoomer.alice.it/lesbiennes/px-239.html
http://xoomer.alice.it/lesbiennes/px-240.html
http://xoomer.alice.it/lesbiennes/px-241.html
http://xoomer.alice.it/lesbiennes/px-242.html
http://xoomer.alice.it/lesbiennes/px-243.html
http://xoomer.alice.it/lesbiennes/px-244.html
http://xoomer.alice.it/lesbiennes/px-245.html
http://xoomer.alice.it/lesbiennes/px-246.html
http://xoomer.alice.it/lesbiennes/px-247.html
http://xoomer.alice.it/lesbiennes/px-248.html
http://xoomer.alice.it/lesbiennes/px-249.html
http://xoomer.alice.it/lesbiennes/px-250.html
http://xoomer.alice.it/lesbiennes/px-251.html
http://xoomer.alice.it/lesbiennes/px-252.html
http://xoomer.alice.it/lesbiennes/px-253.html
http://xoomer.alice.it/lesbiennes/px-254.html
http://xoomer.alice.it/lesbiennes/px-255.html
http://xoomer.alice.it/lesbiennes/px-256.html
http://xoomer.alice.it/lesbiennes/px-257.html
http://xoomer.alice.it/lesbiennes/px-258.html
http://xoomer.alice.it/lesbiennes/px-259.html
http://xoomer.alice.it/lesbiennes/px-260.html
http://xoomer.alice.it/lesbiennes/px-261.html
http://xoomer.alice.it/lesbiennes/px-262.html
http://xoomer.alice.it/lesbiennes/px-263.html
http://xoomer.alice.it/lesbiennes/px-264.html
http://xoomer.alice.it/lesbiennes/px-265.html
http://xoomer.alice.it/lesbiennes/px-266.html
http://xoomer.alice.it/lesbiennes/px-267.html
http://xoomer.alice.it/lesbiennes/px-268.html
http://xoomer.alice.it/lesbiennes/px-269.html
http://xoomer.alice.it/lesbiennes/px-270.html
http://xoomer.alice.it/lesbiennes/px-271.html
http://xoomer.alice.it/lesbiennes/px-272.html
http://xoomer.alice.it/lesbiennes/px-273.html


# re: [Tech'Ed05] Pré-conférence sur ASP.net 2 15/11/2006 10:16 LeVaN
http://www.wwwfinger-tips-rinta.toyt3.com ^^^ http://www.anselig-sykepleier-grupper.toyt3.com ^^^ http://www.sensazione-superpoppe-masturbate.str0nz0.com ^^^ http://www.meringhe.str0nz0.com ^^^ http://www.dvd-videl-hentai.100milfotos.com ^^^ http://www.chica-sexo-clip.100milfotos.com ^^^ http://www.timoroso-torride-masturbate.allievo69.com ^^^ http://www.carsex-perverse.allievo69.com ^^^ http://www.hyvannakoinen-aasialainen-toiminta.huor4.com ^^^ http://www.tarve-lehmitytto-vittu.huor4.com ^^^ http://www.loistelias-teini-suihinotto.hu0ra.com ^^^ http://www.taydellinen-aasialainen-dildo.hu0ra.com ^^^ http://www.timorous-fighetta-figa-fotti.fott1.com ^^^ http://www.avventuroso-asiatiche-strip.fott1.com ^^^ http://www.congeniale-giovane-inculate.f0tti.com ^^^ http://www.amatoriali-scopata-in-casa.f0tti.com ^^^ http://www.chicas-culonas-gif.asiaticas-putas.com ^^^ http://www.avi-culiadas-fuertes.asiaticas-putas.com ^^^ http://www.dick-ollonet.sexknulla.com ^^^ http://www.dick-amatorpar.sexknulla.com ^^^ http://www.selvaggio-ragazze-anale-fotti.corneo69.com ^^^ http://www.sesso-puttane-sverginate.corneo69.com ^^^ http://www.videos-culonas-sborrate.sessololiti.com ^^^ http://www.love-fighette-frode.sessololiti.com ^^^ http://www.freschissimo-fine-vergine.sesso-loliti.com ^^^ http://www.porn-fighe-sciolte.sesso-loliti.com ^^^ http://www.porno-na-chezo.disponibile69.com ^^^ http://www.mobie-podia-charistikon.disponibile69.com ^^^ http://www.napoleonin-orgiat-mpeg.p1mpp1.com ^^^ http://www.pakkaus-kotelot-maksuton.p1mpp1.com ^^^ http://www.lolas-chilenas-pompini.ragazza69.com ^^^ http://www.policias-follando-teens.ragazza69.com ^^^ http://www.naida-hanakat-imeskella.s3ksi.com ^^^ http://www.peraaukon-norsu.s3ksi.com ^^^ http://www.penis-violaciones-video.abbastanza69.com ^^^ http://www.perverse-cachando-rico.abbastanza69.com ^^^ http://www.peliculas-de-adultos.latinas-putas.com ^^^ http://www.video-de-travestis.latinas-putas.com ^^^ http://www.raffish-bondage.putasmorochas.com ^^^ http://www.prostitutas-latinas.putasmorochas.com ^^^

# re: [Tech'Ed05] Pré-conférence sur ASP.net 2 17/11/2006 03:17 OOYY
http://hometown.aol.com/hsxzs/200611162897.htm ????
http://hometown.aol.com/hsxzs/200611162898.htm ???????
http://hsxzs.site.voila.fr/200611162897.htm ????
http://hsxzs.site.voila.fr/200611162898.htm ???????
http://hwfocus.googlepages.com/200611162897.htm ????
http://hwfocus.googlepages.com/200611162898.htm ???????
http://hometown.aol.com/hsxzs/200611162896.htm g?? ????
http://hometown.aol.com/hsxzs/200611162895.htm ???????
http://hometown.aol.com/hsxzs/200611162893.htm ????
http://hometown.aol.com/hsxzs/200611162894.htm ???????
http://hometown.aol.com/hsxzs/200611162892.htm ??????
http://hometown.aol.com/hsxzs/200611162891.htm ??????
http://hwfocus.googlepages.com/200611162895.htm ???????
http://hwfocus.googlepages.com/200611162896.htm g?? ????
http://hwfocus.googlepages.com/200611162894.htm ???????
http://hwfocus.googlepages.com/200611162893.htm ????
http://hwfocus.googlepages.com/200611162892.htm ??????
http://hwfocus.googlepages.com/200611162891.htm ??????
http://hsxzs.site.voila.fr/200611162892.htm ??????
http://hsxzs.site.voila.fr/200611162895.htm ???????
http://hsxzs.site.voila.fr/200611162894.htm ???????
http://hsxzs.site.voila.fr/200611162891.htm ??????
http://hsxzs.site.voila.fr/200611162893.htm ????
http://hsxzs.site.voila.fr/200611162896.htm g?? ????
http://hometown.aol.com/focus889/200611142887.htm ???????
http://hometown.aol.com/focus889/200611142889.htm ???????
http://site.voila.fr/yrmovie/200611142887.htm ???????
http://site.voila.fr/yrmovie/200611142889.htm ???????
http://perso.gratisweb.com/focus889/200611142889.htm ???????
http://perso.gratisweb.com/focus889/200611142887.htm ???????
http://perso.gratisweb.com/focus889/200611142888.htm ????????
http://site.voila.fr/yrmovie/200611142888.htm ????????
http://hometown.aol.com/focus889/200611142888.htm ????????
http://site.voila.fr/yrmovie/200611142883.htm">http://site.voila.fr/yrmovie/200611142883.htm ????
http://hometown.aol.com/focus889/200611142883.htm ????
http://site.voila.fr/yrmovie/200611142883.htm">http://site.voila.fr/yrmovie/200611142883.htm ????
http://hometown.aol.com/focus889/200611142885.htm ??????
http://hometown.aol.com/cxfocus/200611142806.htm ?????
http://hometown.aol.com/cxfocus/200611142830.htm ???
http://hometown.aol.com/cxfocus/200611142801.htm ????
http://hometown.aol.com/cxfocus/200611142810.htm ??
http://hometown.aol.com/cxfocus/200611142841.htm ????
http://hometown.aol.com/cxfocus/200611142819.htm ??
http://hometown.aol.com/cxfocus/200611142804.htm ????
http://hometown.aol.com/cxfocus/200611142849.htm ???????
http://hometown.aol.com/cxfocus/200611142813.htm ?????
http://hometown.aol.com/cxfocus/200611142811.htm ???
http://hometown.aol.com/cxfocus/200611142826.htm ??
http://hometown.aol.com/cxfocus/200611142828.htm ??
http://hometown.aol.com/cxfocus/200611142836.htm ????
http://hometown.aol.com/cxfocus/200611142815.htm ????
http://hometown.aol.com/cxfocus/200611142837.htm ???
http://hometown.aol.com/cxfocus/200611142834.htm ????
http://hometown.aol.com/cxfocus/200611142822.htm ??
http://hometown.aol.com/cxfocus/200611142812.htm ?????
http://hometown.aol.com/cxfocus/200611142847.htm ??
http://hometown.aol.com/cxfocus/200611142848.htm ???????
http://hometown.aol.com/cxfocus/200611142831.htm ????
http://hometown.aol.com/cxfocus/200611142835.htm ?????
http://hometown.aol.com/cxfocus/200611142803.htm ?????
http://hometown.aol.com/cxfocus/200611142825.htm ????
http://hometown.aol.com/cxfocus/200611142824.htm ??
http://hometown.aol.com/cxfocus/200611142838.htm ????
http://hometown.aol.com/cxfocus/200611142820.htm ????
http://hometown.aol.com/cxfocus/200611142827.htm ?????
http://hometown.aol.com/cxfocus/200611142814.htm ??
http://hometown.aol.com/cxfocus/200611142816.htm">http://hometown.aol.com/cxfocus/200611142816.htm ???????
http://hometown.aol.com/cxfocus/200611142816.htm">http://hometown.aol.com/cxfocus/200611142816.htm ???????
http://hometown.aol.com/cxfocus/200611142846.htm QQ?
http://hometown.aol.com/cxfocus/200611142840.htm ???????
http://hometown.aol.com/cxfocus/200611142802.htm ?????
http://hometown.aol.com/cxfocus/200611142808.htm ??
http://hometown.aol.com/cxfocus/200611142842.htm ???
http://hometown.aol.com/cxfocus/200611142821.htm ????
http://hometown.aol.com/cxfocus/200611142850.htm ????
http://hometown.aol.com/cxfocus/200611142817.htm ????
http://hometown.aol.com/cxfocus/200611142805.htm ?????
http://hometown.aol.com/cxfocus/200611142818.htm ????
http://perso.gratisweb.com/abchina/200611092828.htm ??
http://perso.gratisweb.com/abchina/200611092801.htm ????
http://perso.gratisweb.com/abchina/200611092811.htm ???
http://perso.gratisweb.com/abchina/200611092838.htm ????
http://perso.gratisweb.com/abchina/200611092841.htm ????
http://perso.gratisweb.com/abchina/200611092803.htm ?????
http://perso.gratisweb.com/abchina/200611092802.htm ?????
http://perso.gratisweb.com/abchina/200611092836.htm ????
http://perso.gratisweb.com/abchina/200611092825.htm ????
http://perso.gratisweb.com/abchina/200611092849.htm ???????
http://perso.gratisweb.com/abchina/200611092842.htm ???
http://perso.gratisweb.com/abchina/200611092806.htm ?????
http://perso.gratisweb.com/abchina/200611092810.htm ??
http://perso.gratisweb.com/abchina/200611092817.htm ????
http://perso.gratisweb.com/abchina/200611092816.htm ???????
http://perso.gratisweb.com/abchina/200611092830.htm ???
http://perso.gratisweb.com/abchina/200611092848.htm ???????
http://perso.gratisweb.com/abchina/200611092821.htm ????
http://perso.gratisweb.com/abchina/200611092818.htm ????
http://perso.gratisweb.com/abchina/200611092846.htm QQ?
http://perso.gratisweb.com/abchina/200611092820.htm ????
http://perso.gratisweb.com/abchina/200611092804.htm ????
http://perso.gratisweb.com/abchina/200611092812.htm ?????
http://perso.gratisweb.com/abchina/200611092822.htm ??
http://perso.gratisweb.com/abchina/200611092819.htm ??
http://perso.gratisweb.com/abchina/200611092815.htm ????
http://perso.gratisweb.com/abchina/200611092824.htm ??
http://perso.gratisweb.com/abchina/200611092808.htm ??
http://perso.gratisweb.com/abchina/200611092827.htm ?????
http://perso.gratisweb.com/abchina/200611092834.htm ????
http://perso.gratisweb.com/abchina/200611092840.htm ???????
http://perso.gratisweb.com/abchina/200611092831.htm ????
http://perso.gratisweb.com/abchina/200611092814.htm ??
http://perso.gratisweb.com/abchina/200611092813.htm ?????
http://perso.gratisweb.com/abchina/200611092837.htm ???
http://perso.gratisweb.com/abchina/200611092805.htm ?????
http://perso.gratisweb.com/abchina/200611092850.htm ????
http://perso.gratisweb.com/abchina/200611092835.htm ?????
http://perso.gratisweb.com/abchina/200611092847.htm ??
http://perso.gratisweb.com/abchina/200611092826.htm ??

# re: [Tech'Ed05] Pré-conférence sur ASP.net 2 18/11/2006 07:22 OOYY
http://hometown.aol.com/hsxzs/200611162897.htm ????
http://hometown.aol.com/hsxzs/200611162898.htm ???????
http://hsxzs.site.voila.fr/200611162897.htm ????
http://hsxzs.site.voila.fr/200611162898.htm ???????
http://hwfocus.googlepages.com/200611162897.htm ????
http://hwfocus.googlepages.com/200611162898.htm ???????
http://hometown.aol.com/hsxzs/200611162896.htm g?? ????
http://hometown.aol.com/hsxzs/200611162895.htm ???????
http://hometown.aol.com/hsxzs/200611162893.htm ????
http://hometown.aol.com/hsxzs/200611162894.htm ???????
http://hometown.aol.com/hsxzs/200611162892.htm ??????
http://hometown.aol.com/hsxzs/200611162891.htm ??????
http://hwfocus.googlepages.com/200611162895.htm ???????
http://hwfocus.googlepages.com/200611162896.htm g?? ????
http://hwfocus.googlepages.com/200611162894.htm ???????
http://hwfocus.googlepages.com/200611162893.htm ????
http://hwfocus.googlepages.com/200611162892.htm ??????
http://hwfocus.googlepages.com/200611162891.htm ??????
http://hsxzs.site.voila.fr/200611162892.htm ??????
http://hsxzs.site.voila.fr/200611162895.htm ???????
http://hsxzs.site.voila.fr/200611162894.htm ???????
http://hsxzs.site.voila.fr/200611162891.htm ??????
http://hsxzs.site.voila.fr/200611162893.htm ????
http://hsxzs.site.voila.fr/200611162896.htm g?? ????
http://hometown.aol.com/focus889/200611142887.htm ???????
http://hometown.aol.com/focus889/200611142889.htm ???????
http://site.voila.fr/yrmovie/200611142887.htm ???????
http://site.voila.fr/yrmovie/200611142889.htm ???????
http://perso.gratisweb.com/focus889/200611142889.htm ???????
http://perso.gratisweb.com/focus889/200611142887.htm ???????
http://perso.gratisweb.com/focus889/200611142888.htm ????????
http://site.voila.fr/yrmovie/200611142888.htm ????????
http://hometown.aol.com/focus889/200611142888.htm ????????
http://site.voila.fr/yrmovie/200611142883.htm">http://site.voila.fr/yrmovie/200611142883.htm ????
http://hometown.aol.com/focus889/200611142883.htm ????
http://site.voila.fr/yrmovie/200611142883.htm">http://site.voila.fr/yrmovie/200611142883.htm ????
http://hometown.aol.com/focus889/200611142885.htm ??????
http://hometown.aol.com/cxfocus/200611142806.htm ?????
http://hometown.aol.com/cxfocus/200611142830.htm ???
http://hometown.aol.com/cxfocus/200611142801.htm ????
http://hometown.aol.com/cxfocus/200611142810.htm ??
http://hometown.aol.com/cxfocus/200611142841.htm ????