if (e.Item.ItemType == ListViewItemType.DataItem)
{
HtmlTableRow tr = (HtmlTableRow)e.Item.FindControl("itemTemplate"); //tr of table
if (tr != null)
{
foreach (Control c in tr.Controls)
{
HtmlTableCell cell = (HtmlTableCell)c; //td of table.
if (cell != null)
{
cell.Attributes.Add("onmouseover", "this.class='fontBolding'");
}
}
}
}
这是我的listview模板的一部分,我的“fontBolding”在单个.css文件中定义,我在当前页面中使用它。 但是我该如何设置属性。