我有一个列表框:
<asp:ListBox ID="ListBox1" runat="server" AutoPostBack="True"OnSelectedIndexChanged="ListBox1_SelectedIndexChanged">
<asp:ListItem Value="genyn">MAS Meeting</asp:ListItem>
<asp:ListItem Value="smartyn">Smart Meeting</asp:ListItem>
<asp:ListItem Value="genyn">Project Meeting</asp:ListItem>
</asp:ListBox>
在后面的代码中:
protected void ListBox1_SelectedIndexChanged(object sender, EventArgs e)
{
label1.Text= ListBox1.SelectedItem.Text;
}
当我在 ListBox 中选择 Project Meeting 时,label1 的文本为“MAS Meeting”。但我希望它有项目会议。是因为我对第一个和第三个列表项具有相同的价值吗?
谁能帮我?提前致谢