Archive for March, 2009

Add Tooltip to ListBox Control in ASP.NET

I was trying add a title or horizontal scroll bar to one of my asp.net listbox control. This is required because few of my list item text was lengthy. Finally I got solution.

foreach (ListItem item in lstSourceList.Items)
{
item.Attributes.Add(“title”, item.Text);
}

Comments (2)