radioButtonList控件调用数据集问题
sdr = cmd.ExecuteReader();
this.RadioButtonList1.DataSource = sdr;
this.RadioButtonList1.DataTextField = "item ";
现在RadioButtonList1的text只有一个字段的值,我想把DataTextField的内容是表中item和num两的字段的内容组合起来显示 应该怎么写啊?
------解决方案--------------------在sql中写
select Item + num as item ... from 表.