本文介绍了是否有可能中的CheckBoxList到的CssClass分配给复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我要显示风格(的CssClass)分配给内部的CheckBoxList每一个复选框。我想单独做每一个复选框。而最后一个要求是,我要在我的.NET code做服务器端。
I need to assign display style (CssClass) to every CheckBox within CheckBoxList. I would like to do it separately for every CheckBox.And the last requirement is that I have to do it on server side within my .net code.
推荐答案
没有明确。您可以使用属性:
Not explicitly. You can use Attributes:
ListItem myItem = CheckBoxList1.Items[itemIndex];
myItem.Attributes["bgcolor"] = "lightblue";
至于是每一个复选框使用的CssClass,每个复选框实际上是一个的和类不支持的CssClass。
As far as having each checkbox use CssClass, each CheckBox is actually a ListItem and that class does not support CssClass.
这篇关于是否有可能中的CheckBoxList到的CssClass分配给复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!