I would like to concatenate the ID that I get from @Model in the string of the name property of Dropdownlist because I would like to treat them dynamically.
I try to do @Html.DropDownList ("Name" + @ Model.Id) and it does not work.
How could I do it?