Sep 30, 2010

How To Add ToolTip on DropDownlist

Just add attributes into your dropdownlist

for(int i=0; i<=DDL.items.count-1; i++)
{
DDL.Item[i].Attributes.Add("Title", DDL.Item[i].Text)
}

No comments:

Post a Comment