我正在从数据库中检索信用卡类型,并必须在下拉菜单中显示商家使用的信用卡类型。下拉列表有4种类型,如Master、Visa、American Express和Discover以及select。
我检索得很好,但我不确定如何绑定它,使它具有所有4种类型和select,但应该显示已使用的信用卡。
if (cardtype == 1)
{
ddCreditCardType.SelectedValue = ((int)CommonHelper.CCType.Master).ToString();
}
((int)CommonHelper.CCType.Master).ToString();
//This part gets the type of card used but does not put in the ddCreditCardType.
请帮帮我!非常感谢。