Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ImageButton title tag

On an ImageButton using the AlternateText attribute renders an alt tag to the browser.

<asp:ImageButton ID="imagebuttonStuff" runat="server" OnClick="imagebuttonStuff_Click" AlternateText="Make Stuff Happen" ImageUrl="/images/icons/stuff.png" />

<input type="image" name="imagebuttonStuff" id="imagebuttonStuff" src="/images/icons/stuff.png" alt="Make Stuff Happen" />

How do I render a title tag?

like image 525
Nicholas Murray Avatar asked Nov 21 '25 08:11

Nicholas Murray


1 Answers

ToolTip="this is the title"
like image 162
Kobi Avatar answered Nov 24 '25 14:11

Kobi