我的 aspx 中有一个下拉列表,其中有一个为其设置值的事件:
protected void Page_Load(object sender, EventArgs e)
{
DropDownList1.Items.Add("No Image News");
DropDownList1.Items.Add("Small News");
DropDownList1.Items.Add("Medium News");
DropDownList1.Items.Add("Large News");
DropDownList1.DataBind();
}
我有一个有方法的类文件,我想在方法中使用下拉列表。
示例:如果选择的下拉列表值为“汽车”,请执行此操作..
是否可以在类文件中以某种方式使用 aspx 文件中的下拉列表?