我有一個asp.net DropDownList,它從SQL視圖中提取其信息。通過另一個SELECT查詢,我在表中填入List
和branchID's
。然後我想查看這個列表是否包含與branchDDL.SelectedValue
相同的值。我有一個submit button click event
下面的代碼:檢查SQL數組是否包含DropDownList值
List<int> branches;
while (reader1.Read())
{
branches = (from IDataRecord r in reader1 select (int)r["branchID"]).ToList();
}
if (branches.Contains(branchDDL.SelectedValue))
{
// Do something here.
}
的問題是,這是不行的。 if檢查說它有一些無效的參數。請有人指點我正確的方向嗎?
感謝您的額外信息。這確實是個問題。 – Trido