vote up 0 vote down star

I have a list and I am trying to add the data to the ddl. It returns data, (namespace.List). But there is something I am missing... any suggestions?

public List<getBranch> Branch { get; private set; }
...                           
getBranch(user.code);
ddlOption.DataSource = Branch;                        
ddlOption.DataBind();
flag

i think you have a mixup between your Branch type and getBranch list name ... i might be wrong though – roman m Oct 26 at 20:23

1 Answer

vote up 5 vote down check

All you're missing is to tell the dropdown what property of getBranch to show as text and what to use as value:

ddlOption.DataTextField = "propertyOfgetBranchToShowAsText";
ddlOption.DataValueField = "propertyOfgetBranchToUseAsValue";

ok, here's how the code should look like (i think):

your Branch class properties:

public int BranchValue {get;set;}
public string BranchText {get;set;}

...

public List<Branch> branchesToShow { get; private set; }
...                           
branchesToShow = getBranch(user.code); //get the list of branches
ddlOption.DataTextField = "BranchText"
ddlOption.DataValueField = "BranchValue";
ddlOption.DataSource = branchesToShow;                        
ddlOption.DataBind();
link|flag
My error now says getBranch does not contain a proterty with the name 'branchNum' – unknown (yahoo) Oct 26 at 20:29
is getBranch the name of class? see my code as i think i put the Branch where it belongs – roman m Oct 26 at 20:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.