Html.Hidden:-

The Html.Hidden renders a hidden input element in the view and strongly typed version of this helper is “Html.HiddenFor”

Example:

            
  @Html.Hidden("EmpId")
            
            

Strongly typed

            
    @Html.HiddenFor(m => m.EmpId )
            
            

Result:

            
   <input id="EmpId" name="EmpId" type="hidden" value="1" />