DropDownList一个怪问题
前台DropDownList控件设置了。AutoPostBack="True" OnTextChanged="Page_Load"后台Page_Load中
string dzone_id = "";
if (!Page.IsPostBack)
{
sel_dzone_list("", 1);//区块下拉列表;
}
else
{
Response.Write(Dzone.SelectedValue+"<br>");
}
结果,显示两个Dzone的值。。。不知道为什么!