How do I set Title in an 'img'?

1

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>
    
asked by anonymous 10.03.2016 / 14:14

1 answer

2

This can be put in code behind like this:

this.ProximoMes.Attributes.Add("title", "Alguma coisa aqui");
    
10.03.2016 / 14:48