How can I apply the selection required validation on dropdownlist in asp.net razor without using model. below is my DropDownList
<td>@Html.DropDownList("Units", new SelectList(@ViewBag.Settings.CdcPortalRentInfo
, "CdcPortalRentInfoId" , "Description")
, new { style = "width:250px" })
</td>