asp.net - 动态创建单选按钮

发布于 2024-10-29 17:01:29 字数 143 浏览 5 评论 0原文

是否可以动态创建依赖于数据库中的值的单选按钮选项?例如,“b”存储在字段中,因此“a”也将是单选按钮选项,“d”存储在数据库字段中,因此其他单选按钮选项将是“a”、“b”、“ c'...单选按钮列表将根据数据库字段中存储的值而变化。

希望这是有道理的 谢谢

is it possible to dynamically create radio button options that are dependent on a value within a database? For example 'b' is stored in a field so then 'a' will also be a radio button option, 'd' is stored in a database field so then the other radio button options will be 'a', 'b', 'c'....the radio button list will change depending on the value stored in the database field.

Hope this makes sense
Thank you

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

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

发布评论

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

评论(1

夜雨飘雪 2024-11-05 17:01:29

这是 C#,但 VB 基本上是相同的

foreach(string value in myStringsFromDatabase){
myRadioButtonList.Items.Add(new ListItem(value));
}

一旦你有了一个 RadioButtonList,你就可以在从数据库中获取项目后向其中添加项目。由于我不知道您拥有什么样的数据库,因此我假设您可以弄清楚该部分。

This is C#, but VB is basically the same

foreach(string value in myStringsFromDatabase){
myRadioButtonList.Items.Add(new ListItem(value));
}

Once you have a RadioButtonList you can add items to it once you get them from your database. Since I have no idea what kind of database you have, I'll assume you can figure that part out.

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