我现在有个table,里面的cell需要点击的时候是个手的形状,现在是光标,如何从后台进行设置?
table是Table tb = new Table();从后台动态生成的。
------解决思路----------------------
给那个cell添加attribute,比如
cell.Attributes.Add("onmouseover","this.style.cursor=pointer;");
cell.Attributes.Add("onmouseout","this.style.cursor=default;");