首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

RadioListBox怎么绑定图片

2011-12-26 
RadioListBox如何绑定图片数据库用的sql2000VS2005表:createtableface(idintnotnullprimarykeyidentity(1,

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
然后绑定

热点排行