Guest User

Untitled

a guest
May 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. string Id;
  2. string value;
  3.  
  4. int id
  5. string title (id of model title)
  6. *some other property*
  7.  
  8. List<Title> listTitle = GetTitles();
  9.  
  10. ViewBag.TitleList = listTitle;
  11.  
  12. <div>
  13. @Html.LabelFor(model => model.Title)
  14. @foreach (String val in ViewBag.TitleList)
  15. {
  16. @Html.RadioButtonFor(model => model.Title, val)
  17. }
  18. </div>
Add Comment
Please, Sign In to add comment