Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
DropDownlist initial value
Message
De
02/05/2008 05:56:51
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Titre:
DropDownlist initial value
Divers
Thread ID:
01314718
Message ID:
01314718
Vues:
77
Hi

I've got a dropdownlist in the edittemplate of a listview.

I want to set an initial value for the dropdownlist but can't find it.
I'm trying to set it here.
But this returns null
This isn't all the code but shows where I'm trying to access the dropdownlist.

Any thoughts on the best place to get this value set ?

Thanks Nick

protected void DropDownList2_DataBound(object sender, EventArgs e)
{
DropDownList newstypelkup = GetEditItem(this.ListView1).FindControl("DropDownList2") as DropDownList;


public ListViewItem GetEditItem(ListView listview)
{
if (listview.EditIndex >= 0 && listview.EditIndex < listview.Items.Count)
{
return listview.Items[listview.EditIndex];
}
else
{
return null;
}
}
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform