リピーター内にドロップダウンリストがあり、選択したテキストが変更されるたびに、テキストボックスに表示する必要があります。どうすればよいですか?
protected void Repeater1_ItemCreated(object sender, RepeaterItemEventArgs e)
{
DropDownList ddl = (DropDownList)e.Item.FindControl("DropDownList6");
TextBox txt = (TextBox)e.Item.FindControl("TextBox4");
txt.Text = ddl.SelectedItem.Text;
}