问题1:DropDownList中的选项是从数据库中绑定的,但是如何在前面添加“请选择”?
在Page_Load()中添加如下代码不成呀,请指点
DropDownList1.Item.Add("请选择");
问题2:添加一个按钮,onclick事件中设置选择DropDownList控件中的选项后,lblMessage.txt="您选择了:"+DropDownList1.selectedItem.text;
protected void Button1_Click(object sender, EventArgs e)
{
   lblMessage.txt="您选择了:"+DropDownList1.SelectedItem.text;
}
但是为什么将这段代码添加到DropDownList1_SelectedIndexChanged()事件中反而不起作用呢?