如何在代码中添加属性?

时间:2014-01-16 10:52:16

标签: asp.net

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文件中定义,我在当前页面中使用它。 但是我该如何设置属性。

0 个答案:

没有答案