How to add css class in different control

Jak
Jak
Member
858 Points
132 Posts

How to add class in different control

Views: 9578
Total Answered: 1
Total Marked As Answer: 0
Posted On: 22-Feb-2015 13:45

Share:   fb twitter linkedin
Answers
Rahul Maurya
Rahul M...
Teacher
4822 Points
23 Posts
         

textbox:

@Html.TextBoxFor(m => m.Name, new { data_bind="value: Name", @class = "title width-7" })

dropdrown:

@Html.DropDownList("PriorityID", (IEnumerable<SelectListItem>)ViewBag.PriorityID, new { @class="dropdown" })
@Html.DropDownListFor(x => x.PriorityID, (IEnumerable<SelectListItem>)ViewBag.PriorityID, new { @class = "dropdown" })
Posted On: 22-Feb-2015 13:53
 Log In to Chat