Reputation: 2861
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
Reputation: 22086
Try this link
DropDownList1.Items[itemindex].Attributes.Add("title", DropDownList1.Items[itemindex].Text);
Upvotes: 2