DarkW1nter
DarkW1nter

Reputation: 2861

ToolTip for a dropdownlist in .net 4.0

is it possible for each item in a dropdown list to have its own tooltip? If so can anyone point me in the direction of an example?

thanks

Upvotes: 1

Views: 139

Answers (1)

Amit
Amit

Reputation: 22086

Try this link

DropDownList1.Items[itemindex].Attributes.Add("title", DropDownList1.Items[itemindex].Text);

Upvotes: 2

Related Questions