Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
DropDownlist initial value
Message
From
02/05/2008 05:56:51
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
DropDownlist initial value
Miscellaneous
Thread ID:
01314718
Message ID:
01314718
Views:
76
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;
}
}
Next
Reply
Map
View

Click here to load this message in the networking platform