我的表格有2个名为
的DDL州和市
州:
<asp:UpdatePanel ID="States" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="States"EventName="SelectedIndexChanged" />
</Triggers>
<ContentTemplate>
<asp:DropDownList ID="States" runat="server"
AutoPostBack="True" DataSourceID="StatesObjectDataSource"
AppendDataBoundItems="true"
onselectedindexchanged="States_SelectedIndexChanged">
<asp:ListItem Value="-1" Text="- None -"/>
</asp:DropDownList>
<asp:ObjectDataSource ID="StatesObjectDataSource" runat="server"
onselecting="StatesObjectDataSource_Selecting"
SelectMethod="GetStates"
TypeName="Something">
</asp:ObjectDataSource>
</ContentTemplate>
</asp:UpdatePanel>
城市:
<asp:DropDownList ID="Cities" runat="server">
</asp:DropDownList>
当他们选择一个州时,我想用这个州的所有城市填充城市DDL。
在代码背后,我能够进入
States_SelectedIndexChanged(object sender, EventArgs e)
我尝试用这个
填充Cities DDLCities.Items.Add(new ListItem(city,city));
但是,我没有看到我的城市DDL填充
答案 0 :(得分:2)
我建议在ViewState中创建一个包含物理对象集合的私有属性。然后将对象添加到该列表,然后将对象列表数据绑定到下拉列表。
页面背后
<asp:DropDownList runat="server" ID="ddlCity" DataValueField="Key" DataTextField="Value">
</asp:DropDownList>
背后的代码
private List<KeyValuePair<string, string>> ListData
{
get { return (List<KeyValuePair<string, string>>) (ViewState["ListData"] ??
(ViewState["ListData"] = new List<KeyValuePair<string, string>>())); }
set { ViewState["ListData"] = value; }
}
protected void States_SelectedIndexChanged_SelectedIndexChanged(object sender, EventArgs e)
{
ListData.Add(new KeyValuePair<string, string>(ddlCitys.SelectedValue, ddlCitys.SelectedValue));
ddlCitys.DataSource = ListData;
ddlCitys.DataBind();
}
get语句还对ListData属性使用延迟加载,因此在访问列表时永远不会遇到空引用异常。
答案 1 :(得分:1)
如果可能,我建议使用CascadingDropDown Extender而不是UpdatePanel。重新发明那个轮子是没有用的,Toolkit控件使用Web服务而不是部分回发(更快)。
答案 2 :(得分:1)
将您的城市DropDownList放在更新面板中。