标签:
在HTML展现页面上,对于html 的 select, 服务器端控件 dropdownlist, 有时需要根据不同的情况,对某些 option 项,设置不同的颜色和不同的背景色,来以示区别, 对于 HTML 控件 SELECT, 是轻而易举的,只要指定 style 即可,对于服务器端控件,因为不能直接指定style或css, 所以需要自己用 Attributes 去添加。
<select size="5"> <option style="color: white;">>黑背景白色字</option> <option style="color: red">红色字</option> <option style="color: blue">蓝色字</option> </select>
ListBox1.Items[0].Attributes.Add( "style", "background-color: red" ); ListBox1.Items[1].Attributes.Add( "style", "color: blue" ); ListBox1.Items[2].Attributes.Add( "style", "color: green" );
ASP.Net ListBox DropdownList 不同条目设置背景色和字体颜色( 转· 载 )
标签:
原文地址:http://www.cnblogs.com/hanxiaofei/p/5700116.html