2010-08-29 4 views
0

en utilisant selectlist comment puis-je entrer le s'il vous plaît sélectionner. Y at-il un moyenasp.net mvc liste de sélection

GrpDown = new SelectList(_db.Groups.Where(m => m.vcr_GroupName != "SuperAdmin" && m.int_Priority >= Authorization.Priority && m.bit_Active == true).ToList(), "int_GroupId", "vcr_GroupName"); 

Répondre

2

J'espère avoir compris votre question. Essayez quelque chose le long de ces lignes:

var ListOfThings = _db.Groups.Where(m => m.vcr_GroupName != "SuperAdmin" && m.int_Priority >= Authorization.Priority && m.bit_Active == true).ToList(); 

ListOfThings.Insert(0, "Please Select"); // <-- Here you want to enter an item that has the caption "Please Select" 

GrpDown = new SelectList(ListOfThings, "int_GroupId", "vcr_GroupName"); 
Questions connexes