asp.net - 动态创建单选按钮
是否可以动态创建依赖于数据库中的值的单选按钮选项?例如,“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 C#,但 VB 基本上是相同的
一旦你有了一个 RadioButtonList,你就可以在从数据库中获取项目后向其中添加项目。由于我不知道您拥有什么样的数据库,因此我假设您可以弄清楚该部分。
This is C#, but VB is basically the same
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.