Hi everybody,
I had to synchronize 2 DDL when I clic on a btn. the DDL are on 2 different view.
I can access to the second DDl but the value dont change.
I do this:
DropDownList ddl01 = (DropDownList)this.Parent.FindControl(panelFilterManager.Parent.Parent.FindControl("ddl01").ID);
ddl01.SelectedItem.Value = ddl02.SelectedItem.Value;
thx for helping me ^^