我有一個textBox
稱爲txtDate
如何在一個文本框的onTextChange事件
<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採集數據更新DROPDOWNLIST SqlDataSource2
。 我需要更新textBox
的onTextChange
事件上的dropDownList。所以我寫了這個。
protected void txtDate_TextChanged(object sender, EventArgs e)
{
SqlDataSource2.SelectCommand = "NEW SQL COMMAND";
}
但是這並不更新dropDownList
。如果有人願意,請幫助我。