母板页中有一个DropDownList1.我在母板页的page里写了string id=DropDownList1.SelectedValue.ToSting();Session["id"]=id;开启autopostback.在嵌套一个Default.aspx页.里面放了一个Label1.Page_Load:Label1.Text=Session["id"].ToString();
然后当我在DropDownList中选择1.Label1为2的.选2则1.这是什么问题?有什么更好的方法去实现.?