Create a Runtime control like
dropdownlist ddl = new dropdownlist();
ddl.datasource = Ds ( your dataset or Data reader)
ddl.Datatextfield ="xxx" (your attribute to display to user)
ddl.datavaluefield = "yyy" ( value shoud pass to server)
me.controls.add(me.loadControl(ddl));
I hope this will help you.