Make span element visible in ItemBound event of repeater
I got this in Repeater's item template
<span style="color: green;" id="TickMark" visible="false" runat="server">√</span>
In ItemBound event intellisense is not detecting this ID "TickMark"
I need to make √ ie Square roo开发者_运维百科t symbol visible inside data bound
Found the control like this :-
((HtmlControl)e.Item.FindControl("TickMark")).Visible = false;
it worked
精彩评论