MVC @model meaning
in MVC5 , what does @model , @html and @using mean, why and when we usually use ( @ ) and which word follow it ? For example : @model MVC_Project2.Models.stufftable is written in the first of re.cshtml page stufftable is a table which is belong to users to create new user and the following code is written in the same page to create two textbox with two labels two labels to show the login page : @using (Html.BeginForm()) { <div> @Html.LabelFor(u => u.stuffname) @Html.TextBoxFor(u => u.stuffname) </div> <div> @Html.LabelFor(u => u.stuffpass) @Html.PasswordFor(u => u.stuffpass) </div> <input type