我有一个textBox
叫txtDate
<asp:TextBox ID="txtDate" runat="server" AutoPostBack="true" Width="120px"
ontextchanged="txtDate_TextChanged" ></asp:TextBox>
而且我还有一个dropDownList
叫DropDownList1
<asp:DropDownList ID="DropDownList1" runat="server"
DataSourceID="SqlDataSource2" DataTextField="sTime" DataValueField="sTime"
AutoPostBack="True">
</asp:DropDownList>
DropDownList 正在从名为 的 sqlDataSourse 中获取数据SqlDataSource2
。我需要更新 dropDownList 的onTextChange
事件textBox
。所以我写了这个。
protected void txtDate_TextChanged(object sender, EventArgs e)
{
SqlDataSource2.SelectCommand = "NEW SQL COMMAND";
}
但这不会更新dropDownList
. 如果有人可以,请帮助我。