我有一些 Asp.net dropdownList 控件,List docs 有 3 个属性:DocID、UniqueIdentifier、Name。如何仅使用此跨越“IF”条件的记录填充 DDL。这是一个伪代码。
List<IR_DocumentType> docs = IR_DocumentType.getDocType();
foreach (IR_DocumentType item in docs)
{
if (item.DocID ==1)
{
}
}
//dropdownList
DDL.DataSoure = docs;
DDL.Bind();
\