如何用代码显示RadioButtonList控件选中的项的ListItem??
上有四个选项,如何用代码显示所先的选项是第几项(1或2或3或4)?谢谢!TextBox2.Text = RadioButtonList1.Items.(???).ToString();
如下图,想实现当点击 RadioButtonList控件中的“实情汇报”时,TextBox2显示“2”;当点击 RadioButtonList控件中的“工程报表”时,TextBox2显示“1”;当点击 RadioButtonList控件中的“工地检查通知”时,TextBox2显示“3”????
protected void RadioButtonList1_SelectedIndexChanged(object sender, EventArgs e)
{
TextBox2.Text = RadioButtonList1.???.ToString();
}
[此贴子已经被作者于2007-3-15 12:18:28编辑过]