Skip to content

Instantly share code, notes, and snippets.

@ahmadaghazadeh
Created October 10, 2016 04:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadaghazadeh/2750b951f4cfb33810bcaacbd70b60f6 to your computer and use it in GitHub Desktop.
Save ahmadaghazadeh/2750b951f4cfb33810bcaacbd70b60f6 to your computer and use it in GitHub Desktop.
MVC image gallery
@foreach (var item in resPacks)
{
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-6" width="150" height="150">
@item.NAME
@Html.Image(item._id.ToString(), item.DATA, $"class=\"img-responsive\" alt=\"{item._id.ToString()}\" ")
</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment