Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add ALT tag to datagrid 1

Status
Not open for further replies.

chicdog

Programmer
Feb 28, 2002
84
US
Is there a way to add an ALT tag to the following bit of code in a data grid to make it 508 compliant?

Code:
<EditItemTemplate>
<asp:TextBox ID="txtEdit_Description" Width="289px" Text='<%# Container.DataItem("Description") %>' Runat="server" />
<EditItemTemplate>

 
You can add a title to the textbox by setting the ToolTip property


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
chickdog: Just a tidbit; keep in mind too you have the option to add a javascript tooltip during the ItemDataBound event of the Datagrid enabling you to by-pass the default tooltip with something more complex.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top