I am trying to bind json response image 12 products (6 upper and 6 down) with round indication slider.
Below are code i am using in view in mvc only for binding products but slider code is not getting as per requirements
please suggest something.
Thank you in advance.
<div class="row" style="display: flex; justify-content: center; align-items: center; ">
@foreach (Models.Insproclass objmd in objresponse)
{
if (objmd.type== "Product")
{
<a href="@Url.Action("Products", "CarInsurance")?id=@objmd.Product_ID" class="icon-box s2 rounded item" style="width:10%;">
<img src="@Url.Content(objmd.imgpath)" width="100" />
</a>
}
}
</div>