我有一个下拉框,它根据其值填充文本框值。它在更改时触发,但在页面加载时不会触发。如何让它在页面加载时触发?
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
TextBox3.Text = DropDownList1.SelectedValue;
TextBox12.Text = DropDownList1.SelectedValue;
TextBox21.Text = DropDownList1.SelectedValue;
//etc