簡単な質問があります..
DropdownList があり、DATABASE の値に依存するデータを保持しています。
今、彼らは2つのシナリオになることができます:-
1)- DropdownList は値を保持します (空ではない) 2)-DropdownList は値を保持しません (空)
今私が欲しいのは、DropdownListとLABEL(Select UserName)がEMPTYの場合は非表示にしたい..明確であることを願っています.. !!
これを試してDropDownListを非表示にしましたが、機能しないので、LabelとDropDownListの両方を非表示にするにはどうすればよいですか-
<label>
Select UserName :</label>
@if (@ViewBag.UserName.Items.Count == 0)
{
<div id="uniform-undefined" class="selector" style="margin-right: 60px; margin-left: 10px;">
@Html.DropDownList("UserName", null, new { @visible= false })
</div>
}
私はこれを試しました-空になるとドロップダウンリストを無効にし、このコードは機能します..どのように?
@if (@ViewBag.UserName.Items.Count == 0)
{
<div id="uniform-undefined" class="selector" style="margin-right: 60px; margin-left: 10px;">
@Html.DropDownList("UserName", null, new { @disabled = true })
</div>
}