kartal
kartal

Reputation: 18086

imagebutton alternative text doesn't appear in chrome

image button alternative text doesn't appear in chrome browser this is html button code

<div class="bookoffer">
                            <table class="headertable" style="padding-bottom: 0px; height: 100%;">
                                <tr>
                                    <td class="bookbt">
                                        <asp:ImageButton   AlternateText="Book" CssClass="bookstyle" ID="ImageButton1" runat="server" CommandArgument='<%# Eval("OfferID") %>' OnCommand="ImageButton1_Command" />
                                    </td>
                                </tr>
                            </table>
                        </div>

why alternative text doesn't appear ?

Upvotes: 0

Views: 1321

Answers (1)

IrishChieftain
IrishChieftain

Reputation: 15253

Use the Tooltip property to get Firefox and Chrome to show an alt:

ToolTip="this is the title"

ImageButton title tag

Upvotes: 1

Related Questions