在下拉列表项目鼠标悬停事件中显示工具提示

时间:2009-09-10 11:29:15

标签: tooltip

我有一个名为id.name,mobile_no的列的数据库。 我想在下拉列表项中显示移动号码作为工具提示。显示名称的下拉列表项。 工具提示显示数据库中的移动号码,以便从数据库中获取。

怎么样?

1 个答案:

答案 0 :(得分:2)

既然你谈到了一个下拉列表,我假设这是ASP.NET。方法如下:

Private Sub loadDropDown  
    Dim personDataTable As DataTable
    Dim personDataRow As DataRow
    Dim personListItem As ListItem

    ' Data access stuff to get data from DB goes here

    For Each personDataRow In personDataTable.Rows
        personListItem = New ListItem
        With personListItem
            .Text = personDataRow.Item("Name").ToString
            .Value = personDataRow.Item("Id").ToString
            .Attributes.Add("title", personDataRow.Item("mobile_no").ToString)
        End With
        PeopleDropDownList.Items.Add(personListItem)
    Next
End Sub