从下拉列表中检索所选项目的值
我有一个下拉列表,其中包含数据文本字段名称“国家/地区”和名为“国家/地区 ID”的数据值字段。
我需要根据下拉列表的 selectedindexchanged 事件获取 datavaluefield 的值并将其存储在 SQL 表“mytable”中。
请保留 C# 代码。
I have a dropdownlist with a datatext field name country and a datavaluefield named countryid.
I need to get the datavaluefield's value and store it in an sql table "mytable", based on the selectedindexchanged event of the dropdownlist.
Please keep the code in C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用以下内容:
Use the following:
*这将返回所选项目的文本值,您可以在数据库语句中使用它*
*This will return the selected item's text in value, which you can use in your db statements *