当前位置: 代码迷 >> ASP.NET >> RadioListBox怎么绑定图片
  详细解决方案

RadioListBox怎么绑定图片

热度:5087   发布时间:2013-02-26 00:00:00.0
RadioListBox如何绑定图片
数据库用的sql2000
VS2005
表:
create   table   face
(
id   int   not   null   primary   key   identity(1,1),
imgUrl   nvarchar(50)   not   null
)

问题:用RadioListBox绑定这表   显示出来的为imgUrl对应的图片   而不是里边的字段  
注册后的第一个问题   谢谢

------解决方案--------------------------------------------------------
RadioListBox
还是
RadioButtonList阿??
昏..
查询语句:
select id, ' <img src= " '+imgUrl+ ' " /> ' from face
然后绑定
  相关解决方案