我想显示多个文本框,具体取决于用户从下拉框中选择的数字。下面的示例:根据下拉框选择显示文本框
所以,无论数量在下拉刷新页面中选择,并显示该号码的文本框中。我需要去20个领域。有没有办法在C#或者使用Ajax Control Toolkit来做到这一点?
ASPX
<asp:Label ID="NumAccounts" runat="server" Text="# of Accounts"></asp:Label> <asp:DropDownList
ID="EmpNameList" runat="server" onselectedindexchanged="NumAccountsList_SelectedIndexChanged"
AutoPostBack="True">
</asp:DropDownList>
试试看[这里](http://forums.asp.net/t/1785209.aspx/1) – Nathan
@Nathan谢谢nathan,这非常有帮助! – techora