C# Ajax工具包DropDownList控件Extender没有在文本框中显示

发布于 2024-11-17 23:45:07 字数 1096 浏览 2 评论 0原文

我在更新面板中有文本框和列表框。我的文本框启用了 dropdownlistextender,其值采用某些货币,如美元、马来西亚林吉特、日元等。但是当我从此列表中选择值时,它不会显示在文本框中。我应该怎么办?当它显示在文本框中时,它应该被插入到我创建的数据库中。谢谢转发。

 <asp:TextBox ID="txtCurrency" runat="server"></asp:TextBox>
 <asp:DropDownExtender ID="txtCurrency_DropDownExtender" runat="server" 
     DropDownControlID="ListBox1" DynamicServicePath="" Enabled="True" 
     TargetControlID="txtCurrency">
 </asp:DropDownExtender>
 <asp:ListBox ID="ListBox1" runat="server" 
     onselectedindexchanged="ListBox1_SelectedIndexChanged">
     <asp:ListItem Selected="True"></asp:ListItem>             
     <asp:ListItem>MYR</asp:ListItem>
     <asp:ListItem>USD</asp:ListItem>
     <asp:ListItem>EURO</asp:ListItem>
     <asp:ListItem>POUND</asp:ListItem>
     <asp:ListItem>Singapore Dollar</asp:ListItem>
     <asp:ListItem>Yuan/Renmibi</asp:ListItem>
     <asp:ListItem>Japan Yen</asp:ListItem>
     <asp:ListItem></asp:ListItem>
 </asp:ListBox>

I have textbox and listbox inside an update panel. My textbox is enabled with dropdownlistextender that its values is in some currencies like USD,MYR,Yen etc. But when I select value from this list, it doesnt show up in textbox. What should I do? When it display in textbox, it should be inserted into my created database. Thanks in forward.

 <asp:TextBox ID="txtCurrency" runat="server"></asp:TextBox>
 <asp:DropDownExtender ID="txtCurrency_DropDownExtender" runat="server" 
     DropDownControlID="ListBox1" DynamicServicePath="" Enabled="True" 
     TargetControlID="txtCurrency">
 </asp:DropDownExtender>
 <asp:ListBox ID="ListBox1" runat="server" 
     onselectedindexchanged="ListBox1_SelectedIndexChanged">
     <asp:ListItem Selected="True"></asp:ListItem>             
     <asp:ListItem>MYR</asp:ListItem>
     <asp:ListItem>USD</asp:ListItem>
     <asp:ListItem>EURO</asp:ListItem>
     <asp:ListItem>POUND</asp:ListItem>
     <asp:ListItem>Singapore Dollar</asp:ListItem>
     <asp:ListItem>Yuan/Renmibi</asp:ListItem>
     <asp:ListItem>Japan Yen</asp:ListItem>
     <asp:ListItem></asp:ListItem>
 </asp:ListBox>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文