我有下拉列表,其中包含要显示的文本和值作为隐藏值。 我想在用户选择其他选择时不断更改值工具提示作为值。 好吧,我已经尝试了这段代码,但是没有正常工作:
<asp:DropDownList ID="ddlBranch" runat="server" Width="350px" ToolTip='<% ddlBranch.Value %>'>
在firefox下拉列表工具提示中显示为&lt;%ddlBranch.Value%&gt;
方面
答案 0 :(得分:0)
试试这个
for (int i = 0; i <= DropDownList1.Items.Count - 1; i++)
{
DropDownList1.Items[i].Attributes.Add("Title", DropDownList1.Items[i].Text);
}