i have drop down list in my page that contain cities name i bind it from city table
city
|
id
|
paris
|
1
|
germany
|
2
|
itally
|
3
|
usa
|
4
|
i want when page is load in my dropdown list show name of city from House_p table it is different for each users
city
|
behcode
|
name
|
id
|
paris
|
1111
|
sara
|
1
|
i bind txtstore.Text = _dr["name"].ToString();
that show name column in text box now i want bind dropdownlist that show city column
thanks again