or

<telerik:RadToolTipManager ID="InvoiceToolTipManager" runat="server" Position="TopCenter" EnableShadow="true" Animation="Fade" RelativeTo="Element" Skin="Web20" CssClass="toolTip" AutoCloseDelay="30000"> <WebServiceSettings Method="GetToolTipData" Path="/Help/ToolTipService.asmx"/>/telerik:RadToolTipManager>If dataitem.ItemIndex() = 1Then
If dataitem(columnName(1)).Text <>"nbsp" Then
link.Font.Underline = True
link.Text = dataitem(columnName(1)).Text
link.NavigateUrl = HyprUrl + monthyear(1)
dataitem(columnName(1)).Controls.Add(link)
End If
If dataitem(columnName(2)).Text <> "nbsp" Then
link.Font.Underline = True
link.NavigateUrl = HyprUrl + monthyear(2)
link.Text = dataitem(columnName(2)).Text
dataitem(columnName(2)).Controls.Add(link)
End If
If dataitem(columnName(3)).Text <>" " Then
link.Font.Underline = True
link.NavigateUrl = HyprUrl + monthyear(3)
link.Text = dataitem(columnName(3)).Text
dataitem(columnName(3)).Controls.Add(link)
end if
<tr>
<td>
<asp:UpdatePanel ID="UpdatePanel36" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:PlaceHolder runat="server" ID="Fields">
</asp:PlaceHolder>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="DropDownList2" />
</Triggers>
</asp:UpdatePanel>
</td>
</tr>.....
Dim dropDownList As DropDownList
dropDownList = New DropDownList
dropDownList.ID = array_action_ids(i)
dropDownList.Visible = True
dropDownList.DataSourceID = "SqlDataSource2"
dropDownList.DataTextField = "LEGAL_PHONE_NUMBER"
dropDownList.DataValueField = "LEGAL_PHONE_ID"
Fields.Controls.Add(GetLiteral("<td>"))
Fields.Controls.Add(dropDownList)
Fields.Controls.Add(GetLiteral("</td>"))
..... Dim dropdownlist_phone As DropDownList = CType(Fields.FindControl("DropDownList_Phone"), DropDownList)Dim temp_Placeholder as Placeholder = CType(UpdatePanel36.FindControl("Fields"), Placeholder)
Dim dropdownlist_phone As DropDownList = CType(temp_Placeholder.FindControl("DropDownList_Phone"), DropDownList)