我想知道当用户选择两个给出年份和月份的下拉列表时如何填充标签集?
问问题
277 次
3 回答
0
不确定您所说的“一组标签”是什么意思,但是如果您只想要组合框值,那么这样的东西会起作用。
label1.Text = comboBox1.SelectedValue + "/" + comboBox2.SelectedValue;
于 2013-09-03T04:26:18.207 回答
0
SelectedIndexChanged
将这两项设置DropDownList
为以下
protected void DropDownList_SelectedIndexChanged(object sender, EventArgs e)
{
Label1.Text = string.Format("Year :{0}, Month :{1}" , DropDownListYear.SelectedValue, DropDownListMonth.SelectedValue);
}
于 2013-09-03T04:26:58.140 回答
0
DropDownList有一个名为SelectedIndexChanged的事件。您可以使用它来填充您的标签集。因为你在这里有 2 个 dorpdowns,所以你必须执行以下操作:
protected void DropDownYear_SelectedIndexChanged(object sender, EventArgs e)
{
/* code to check if the user has selected the year */
label1.Text = "your string";
label2.Text = "your other string";
}
于 2013-09-03T04:32:26.170 回答