I have this line of markup
<a id="cashout_btn" href="#" data-tooltiptext="<%=this.CashOutTooltip%>" runat="server">
<span id="cashout_txt" class="cashout_txt" runat="server"> 150</span>
</a>
But on client side I see:
<a href="../Controls/NetworkPAU/#" id="networkPauControl_cashoutControl_cashout_btn"
data-tooltiptext="<%=this.CashOutTooltip%>"
data-tooltiptype="simpleTip"><span id="networkPauControl_cashoutControl_cashout_txt" class="cashout_txt">
150</span> </a>
Meaning no string was populated in data-tooltiptext="<%=this.CashOutTooltip%>"
Any idea?