if (!IsPostBack)
{
//this.DropDownList1.Attributes.Add("onchange","window.open(this.value,'','');");
this.DropDownList1.Attributes.Add("onchange","openvalue(this,this.value)");
string js=@"<script langugae=""javascript"">";
js += @" function openvalue(selobj,selvalue)";
js += @"{";
js += @"alert('aaaa');";
js += @"if (selobj.value!="""")";
js += @"{";
js += @"window.open(selvalue);"; 
js += @"selobj.selectedIndex=0;";
js += @"}";
js += @"}";
js += @"</script>";
this.RegisterClientScriptBlock("onchange",js);
}
dropdownlist1的autopostback=true;