Rick Freeman

Rick Freeman

  • NA
  • 30
  • 8.3k

MVC ListBox

Nov 11 2015 6:35 PM
Hello,
 
I'm looking for a ListBox example that will display images from url, not a drop down list?
Where multiple items are selective and then be able to pass a value(send request via twitter direct msg) from class to each one selected 
 
This what I have so far:
@using (Html.BeginForm())
{
@Html.ListBoxFor(s => s.allFollowers,
new SelectList(Model.allFollowers, "userId", "profileImage"))
<input type="submit" value="Submit" />
}
 

Answers (2)