I have a dropdownlist in a repeater. I want whenever a postback has been raised, then rebind the dropdownlist.
The problem is, when I debbug this thing, the code did run through the ddl.databind(), but for some resons, the dropdownlist still load the list and selected value from the original viewstate. I know that because if I set the ddl's EnableViewState as "false", i can rebind the ddl properly.
Any suggestions?
<asp:Repeater ID="reEventsDataTypeOthers" runat="server" Visible="false">
...
<ItemTemplate>
...
<asp:DropDownList ID="ddlEventSessionLocation" runat="server" CssClass="ddlControlS1L" Title="Location" EnableViewState="true"/>
Codebehinde (I tried to bind it in _ItemCreated and _ItemDataBound, but both faied):
void reEventsDataTypeOthers_ItemCreated(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType != ListItemType.Item && e.Item.ItemType != ListItemType.AlternatingItem)
return;
FSIDropDownList ddl = e.Item.FindControl("ddlEventSessionLocation") as FSIDropDownList;
if (ddl != null && ddl.SelectedValue != "NOTSET")
{
ddl.DataSource = EventLocations;
ddl.DataTextField = "Value";
ddl.DataValueField = "Key";
ddl.DataBind();
ddl.Items.Insert(0, new ListItem("Not Set", "NOTSET"));
}
}
UPDATE, Problem solved:
What I did is put the dropdownlist bind code in this repeater's prerender event method, thus can overwrite the viewstate value.