Hi Guys,
I have a problem with the Styles ..... I have my own personalize style like :
color:blue;font-size:18px;font-weight:bold;
It works well ... But if I changed that style to : color:#blue;font-size:18px;font-weight:bold;
It does not consider the color ..... It is important due to our application let our customer defined their styles .....
and we can not tell them, sorry it does not work with #
It may help :
I'm adding the styles like this
rddl.Items.Add("<span Style='" + lsContentStyle + "'>" + lstyle + "</span>",lsContentStyle,lsContentStyle);
where
lsContentStyle = "color:blue;font-size:18px;font-weight:bold;"
Hope Your Comments
AAP