Html – How Can I add comma after "a" Tag in razor page ASP.NET Core 8
I'm trying to add comma(,) after "a" tag in foreach like this: @foreach (var item in Model.Product.Categories) { <a href="#" class="product-link product-cat-title">@item.Name</a> , } but I'm getting error that says "} Expected". What should I do? I've tested @string.join(", ",…