1
I have this include in my view(cshtml)
@model List<SuporteTecnico.Models.T_PDV>
Now I need to create a table, and in a TD I put the label and in another the Textbox. I did so:
<tr>
<td>@Html.Label("Razão Social")</td>
<td>@Html.TextBoxFor(r => r.)</td>//Aqui não consigo pegar a RazaoSocial
</tr>
I tried Model => Model.... and also nothing came, changed to model => model... and nothing either.
What I really need is to create an id for the textbox, because I work with dynamic values coming from a jquery function.
In Intellisense I bring: Select<>, Removeat,Add, Addrange, Agregate<>, All<>, Any<> and etc...
I didn’t realize it was a list.
– Tiedt Tech