Is there a HTML helper in MVC that will render the value of the property with the name attribute. For example,
<td><div name="fileName">Hello World<div></td>
I'm currently using 'Display for' which just renders the text ...
public string FileName{ get; set; }
@Html.DisplayFor(x => Test.FileName)
The text is within a form. I'd like to retrieve the value when posting the form data.