radiobuttonlist中无线电的备用背景颜色?

时间:2011-05-16 00:55:06

标签: asp.net coding-style controls

我正在尝试使用以下代码替换radiobuttonlist中的项目的背景颜色,类似的代码正在处理下拉列表项目

            If color Then
                        rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background: white;")
                        rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background-color: white;")
                    Else
                        rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background-color: LightSlateGray;")
                        rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background: LightSlateGray;")
                    End If

                    color = Not color

我错过了什么吗?

由于

1 个答案:

答案 0 :(得分:2)

有效

 rdBtnList.Items.FindByText(lstItem.Text).Attributes.Add("style", "color: black;font-weight:bold;")