How do I change <img src=""> value conditionally? | Razor CSHTML
I’d like to set the src value to ImgLink if the number of elements in my iList is >= 7 and set it to an empty string if not. I tried this <div><img src=@Model.SlideshowItems.Count >= 7 ? "@UrlResolver.Current.GetUrl(Model.SlideshowItems[6].ImgLink)" : ""></div> >Solution : You can do something like: @{ string src = "img/exampleDefault.png"; if (//logic) {… Read More How do I change <img src=""> value conditionally? | Razor CSHTML