A Lot DropDownList Problems

  • Thread starter Thread starter badfox
  • Start date Start date
B

badfox

Hi !

A have three DropDownList and when set set value of one, the 3 DDL set
the some value ! Why ? See the code:

ddlFlavio.SelectedValue = oProduto.GradeId1.ToString(); // Value = 1
ddlAndreza.SelectedValue = oProduto.GradeId2.ToString(); // Value = 2
ddlArthur.SelectedValue = oProduto.GradeId3.ToString(); // Value = 3



Tks !
 
Could there be a change event firing on ddlFlavio that contains logic
to change the other two?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top