Nicholas Murray
Nicholas Murray

Reputation: 13529

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?

Upvotes: 2

Views: 6474

Answers (1)

Kobi
Kobi

Reputation: 138097

ToolTip="this is the title"

Upvotes: 9

Related Questions