Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
DropDownlist initial value
Message
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01314718
Message ID:
01314733
Views:
6
>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 ?
>

You almost had it, try this instead:
protected void DropDownList2_DataBound(object sender, EventArgs e)
{
   DropDownList newstypelkup = e.FindControl("DropDownList2") as DropDownList;
   if (newstypelkup != null)
   {
      // Set value here
   }
}
-Paul

RCS Solutions, Inc.
Blog
Twitter
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform