`<div class="form-group">
<div class="col-md-3">
<nop-label asp-for="YearSerial" />
</div>
<div class="col-md-9">
<div class="form-text-row">@Model.YearSerial</div>
</div>
</div>`
This is my code. It's showing line below
Year Serial: 2022;2021;2020
But I need to show every year serial separated by semicolon as a column as below
Year Serial:
2022your text
2021
2020
or It will be great if you can put the year serial in table column
Thanks in advance