Réponse acceptée !
Bonjour,j'ai régler mon problème et voila la solution:
la 1ère page:
Session["Listmoteur"] = Listmoteur;
foreach (ListItem i in ListBox2.Items)
{
if (i.Selected)
{
Listmoteur.Add(i.Value);
}
}
la 2ème page:(dans Page_Load)
List<string> liste = (List<string>)Session["Listmoteur"];
if (liste != null)
{
for (int j = 0; j < liste.Count; j++)
{
Response.Write(liste[j]);
}
}
Merci bien pour ton aide et ta patience mimosa803, à bientôt.