从下拉列表中检索所选项目的值

发布于 2024-11-08 15:31:33 字数 160 浏览 0 评论 0原文

我有一个下拉列表,其中包含数据文本字段名称“国家/地区”和名为“国家/地区 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

擦肩而过的背影 2024-11-15 15:31:33

使用以下内容:

requestedValue = dropDownList.SelectedValue;

Use the following:

requestedValue = dropDownList.SelectedValue;
可爱暴击 2024-11-15 15:31:33
string value = ddl.SelectedItem.Text;

*这将返回所选项目的文本值,您可以在数据库语句中使用它*

string value = ddl.SelectedItem.Text;

*This will return the selected item's text in value, which you can use in your db statements *

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文