Is there any way to set the title (Text)
of component img
to code behind
?
<tr>
<td colspan="7">
<img id="ProximoMes" src="../Images/Icons/dright.gif" />
</td>
</tr>
Is there any way to set the title (Text)
of component img
to code behind
?
<tr>
<td colspan="7">
<img id="ProximoMes" src="../Images/Icons/dright.gif" />
</td>
</tr>
This can be put in code behind like this:
this.ProximoMes.Attributes.Add("title", "Alguma coisa aqui");