I want to assign some ID attribute name to my Dropdown list which is using data from the ViewBag as,
ViewBag.Group = new SelectList(group, \"GroupId\", \"Nam
You should be using something like this
@Html.DropDownList("Group",null,new{@id="testID"});
because the data for the DropDownList comes from the ViewBag to name Group
Group