2
Answers

MVC ListBox

Rick Freeman

Rick Freeman

9y
377
1
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)