如果我的下拉列表选择了一个值,我想在我的文本框中显示选定的项目文本。如果没有,我想清空它。
<asp:DropDownList ID="ddl" runat="server" AutoPostBack="true" onselectedindexchanged="ddlSelectedIndexChanged" Width="200px" onchange="ddlChange()">
</asp:DropDownList>
<asp:TextBox ID="hdntxtbxTaksit" runat="server" Visible="false"></asp:TextBox>
我怎样才能做到这一点?